diff options
-rw-r--r-- | kernel/ptrace.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/ptrace.c b/kernel/ptrace.c index 0692ab5a0d67..42c317874cfa 100644 --- a/kernel/ptrace.c +++ b/kernel/ptrace.c | |||
@@ -304,6 +304,8 @@ int ptrace_detach(struct task_struct *child, unsigned int data) | |||
304 | if (child->ptrace) { | 304 | if (child->ptrace) { |
305 | child->exit_code = data; | 305 | child->exit_code = data; |
306 | dead = __ptrace_detach(current, child); | 306 | dead = __ptrace_detach(current, child); |
307 | if (!child->exit_state) | ||
308 | wake_up_process(child); | ||
307 | } | 309 | } |
308 | write_unlock_irq(&tasklist_lock); | 310 | write_unlock_irq(&tasklist_lock); |
309 | 311 | ||