aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/sched.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 456d80ed3b78..8cef82d4cf77 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -652,9 +652,8 @@ struct signal_struct {
652 * Bits in flags field of signal_struct. 652 * Bits in flags field of signal_struct.
653 */ 653 */
654#define SIGNAL_STOP_STOPPED 0x00000001 /* job control stop in effect */ 654#define SIGNAL_STOP_STOPPED 0x00000001 /* job control stop in effect */
655#define SIGNAL_STOP_DEQUEUED 0x00000002 /* stop signal dequeued */ 655#define SIGNAL_STOP_CONTINUED 0x00000002 /* SIGCONT since WCONTINUED reap */
656#define SIGNAL_STOP_CONTINUED 0x00000004 /* SIGCONT since WCONTINUED reap */ 656#define SIGNAL_GROUP_EXIT 0x00000004 /* group exit in progress */
657#define SIGNAL_GROUP_EXIT 0x00000008 /* group exit in progress */
658/* 657/*
659 * Pending notifications to parent. 658 * Pending notifications to parent.
660 */ 659 */
@@ -1779,6 +1778,7 @@ extern void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *
1779#define GROUP_STOP_PENDING (1 << 16) /* task should stop for group stop */ 1778#define GROUP_STOP_PENDING (1 << 16) /* task should stop for group stop */
1780#define GROUP_STOP_CONSUME (1 << 17) /* consume group stop count */ 1779#define GROUP_STOP_CONSUME (1 << 17) /* consume group stop count */
1781#define GROUP_STOP_TRAPPING (1 << 18) /* switching from STOPPED to TRACED */ 1780#define GROUP_STOP_TRAPPING (1 << 18) /* switching from STOPPED to TRACED */
1781#define GROUP_STOP_DEQUEUED (1 << 19) /* stop signal dequeued */
1782 1782
1783extern void task_clear_group_stop_pending(struct task_struct *task); 1783extern void task_clear_group_stop_pending(struct task_struct *task);
1784 1784