Commit 3b307fd5 authored by Ingo Molnar's avatar Ingo Molnar Committed by Linus Torvalds

[PATCH] stale thread detach debugging removal

one of the debugging tests triggered a false-positive BUG() when a
detached thread was straced.
parent d2b7244f
......@@ -774,7 +774,7 @@ void do_notify_parent(struct task_struct *tsk, int sig)
int why, status;
/* is the thread detached? */
if (sig == -1 || tsk->exit_signal == -1)
if (sig == -1)
BUG();
info.si_signo = sig;
......
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