aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/thread_analysis.c2
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 */