diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-11-16 21:23:56 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-11-16 21:23:56 +0000 |
commit | 4dc0dce886003a286f4e719bdcaa3f8dd25da193 (patch) | |
tree | e08c5f68af279bb0696b73b3dae79015fb5f66d0 /scripts/thread_analysis.c | |
parent | 7a915d627daadb64ebd46a892dd0ee53b42d1862 (diff) | |
download | strongswan-4dc0dce886003a286f4e719bdcaa3f8dd25da193.tar.bz2 strongswan-4dc0dce886003a286f4e719bdcaa3f8dd25da193.tar.xz |
added migration to NEWS
Diffstat (limited to 'scripts/thread_analysis.c')
-rw-r--r-- | scripts/thread_analysis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/thread_analysis.c b/scripts/thread_analysis.c index f796b4de2..b0e6c539b 100644 --- a/scripts/thread_analysis.c +++ b/scripts/thread_analysis.c @@ -95,7 +95,7 @@ int main(int argc, char *argv[]) /* threads 1..5 and 9 are always busy */ for (th = 1; th <= THREADS; th++) { - state[th] = (th <= 5 || th == 9 )? STATE_BUSY : STATE_IDLE; + state[th] = (th <= 7 && th != 3)? STATE_BUSY : STATE_IDLE; } /* open the log file */ |