diff options
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index a913fca9e70d..99855f694ebd 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -752,6 +752,7 @@ struct task_struct { | |||
752 | 752 | ||
753 | /* PID/PID hash table linkage. */ | 753 | /* PID/PID hash table linkage. */ |
754 | struct pid pids[PIDTYPE_MAX]; | 754 | struct pid pids[PIDTYPE_MAX]; |
755 | struct list_head thread_group; | ||
755 | 756 | ||
756 | struct completion *vfork_done; /* for vfork() */ | 757 | struct completion *vfork_done; /* for vfork() */ |
757 | int __user *set_child_tid; /* CLONE_CHILD_SETTID */ | 758 | int __user *set_child_tid; /* CLONE_CHILD_SETTID */ |
@@ -1192,13 +1193,17 @@ extern void wait_task_inactive(task_t * p); | |||
1192 | #define while_each_thread(g, t) \ | 1193 | #define while_each_thread(g, t) \ |
1193 | while ((t = next_thread(t)) != g) | 1194 | while ((t = next_thread(t)) != g) |
1194 | 1195 | ||
1195 | extern task_t * FASTCALL(next_thread(const task_t *p)); | ||
1196 | |||
1197 | #define thread_group_leader(p) (p->pid == p->tgid) | 1196 | #define thread_group_leader(p) (p->pid == p->tgid) |
1198 | 1197 | ||
1198 | static inline task_t *next_thread(task_t *p) | ||
1199 | { | ||
1200 | return list_entry(rcu_dereference(p->thread_group.next), | ||
1201 | task_t, thread_group); | ||
1202 | } | ||
1203 | |||
1199 | static inline int thread_group_empty(task_t *p) | 1204 | static inline int thread_group_empty(task_t *p) |
1200 | { | 1205 | { |
1201 | return list_empty(&p->pids[PIDTYPE_TGID].pid_list); | 1206 | return list_empty(&p->thread_group); |
1202 | } | 1207 | } |
1203 | 1208 | ||
1204 | #define delay_group_leader(p) \ | 1209 | #define delay_group_leader(p) \ |