Searched refs:idle_thread_array (Results 1 – 3 of 3) sorted by relevance
/arch/powerpc/kernel/ |
D | smp.c | 70 static DEFINE_PER_CPU(struct task_struct *, idle_thread_array); 71 #define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x)) 72 #define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p)) 78 static struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ; variable 79 #define get_idle_for_cpu(x) (idle_thread_array[(x)]) 80 #define set_idle_for_cpu(x, p) (idle_thread_array[(x)] = (p))
|
/arch/x86/kernel/ |
D | smpboot.c | 90 static DEFINE_PER_CPU(struct task_struct *, idle_thread_array); 91 #define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x)) 92 #define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p)) 113 static struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ; variable 114 #define get_idle_for_cpu(x) (idle_thread_array[(x)]) 115 #define set_idle_for_cpu(x, p) (idle_thread_array[(x)] = (p))
|
/arch/ia64/kernel/ |
D | smpboot.c | 82 struct task_struct *idle_thread_array[NR_CPUS]; variable 97 #define get_idle_for_cpu(x) (idle_thread_array[(x)]) 98 #define set_idle_for_cpu(x,p) (idle_thread_array[(x)] = (p))
|