Commit 3a7853d5 authored by Pavel Machek's avatar Pavel Machek Committed by Linus Torvalds

[PATCH] signal.c: convert assertion to BUG_ON()

Signed-off-by: default avatarPavel Machek <pavel@suse.cz>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 67547e35
...@@ -1456,8 +1456,7 @@ void do_notify_parent(struct task_struct *tsk, int sig) ...@@ -1456,8 +1456,7 @@ void do_notify_parent(struct task_struct *tsk, int sig)
unsigned long flags; unsigned long flags;
struct sighand_struct *psig; struct sighand_struct *psig;
if (sig == -1) BUG_ON(sig == -1);
BUG();
/* do_notify_parent_cldstop should have been called instead. */ /* do_notify_parent_cldstop should have been called instead. */
BUG_ON(tsk->state & (TASK_STOPPED|TASK_TRACED)); BUG_ON(tsk->state & (TASK_STOPPED|TASK_TRACED));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment