This commit is contained in:
Søren Sandmann Pedersen
2004-11-21 23:32:40 +00:00
parent 6583d59e18
commit a0100c8865

View File

@ -304,10 +304,10 @@ on_timer(unsigned long dong)
{ {
struct task_struct *p; struct task_struct *p;
static const int cpu_profiler = 1; /* set to 0 to profile disk */ static const int cpu_profiler = 0; /* set to 0 to profile disk */
for_each_process (p) { for_each_process (p) {
if (p->state == cpu_profiler? TASK_RUNNING : TASK_UNINTERRUPTIBLE) if (p->state == (cpu_profiler? TASK_RUNNING : TASK_UNINTERRUPTIBLE))
queue_generate_stack_trace (p); queue_generate_stack_trace (p);
} }