diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-09-29 04:59:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-29 12:18:09 -0400 |
commit | 3d5b6fccc4b900cc4267692f015ea500bad4c6bf (patch) | |
tree | 7ec9dbaeeb190af073fd52a6c3a936e70870c96e /include | |
parent | e1dfa92dcab72397ed1f85f7b8f98a9da43b3f7b (diff) |
[PATCH] task_struct: ifdef Missed'em V IPC
ipc/sem.c only.
$ agrep sysvsem -w -n
ipc/sem.c:912: undo_list = current->sysvsem.undo_list;
ipc/sem.c:932: undo_list = current->sysvsem.undo_list;
ipc/sem.c:954: undo_list = current->sysvsem.undo_list;
ipc/sem.c:963: current->sysvsem.undo_list = undo_list;
ipc/sem.c:1247: tsk->sysvsem.undo_list = undo_list;
ipc/sem.c:1249: tsk->sysvsem.undo_list = NULL;
ipc/sem.c:1271: undo_list = tsk->sysvsem.undo_list;
include/linux/sched.h:876: struct sysv_sem sysvsem;
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 9d4aa7f95bc8..27122575d902 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -886,8 +886,10 @@ struct task_struct { | |||
886 | - initialized normally by flush_old_exec */ | 886 | - initialized normally by flush_old_exec */ |
887 | /* file system info */ | 887 | /* file system info */ |
888 | int link_count, total_link_count; | 888 | int link_count, total_link_count; |
889 | #ifdef CONFIG_SYSVIPC | ||
889 | /* ipc stuff */ | 890 | /* ipc stuff */ |
890 | struct sysv_sem sysvsem; | 891 | struct sysv_sem sysvsem; |
892 | #endif | ||
891 | /* CPU-specific state of this task */ | 893 | /* CPU-specific state of this task */ |
892 | struct thread_struct thread; | 894 | struct thread_struct thread; |
893 | /* filesystem information */ | 895 | /* filesystem information */ |