#ifndef _LINUX_SCHED_DEBUG_H #define _LINUX_SCHED_DEBUG_H /* * Various scheduler/task debugging interfaces: */ struct task_struct; extern void dump_cpu_task(int cpu); /* * Only dump TASK_* tasks. (0 for all tasks) */ extern void show_state_filter(unsigned long state_filter);
static inline void show_state(void) { show_state_filter(0); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 140 | 100.00% | 2 | 100.00% |
Total | 140 | 100.00% | 2 | 100.00% |