Commit 75d95062 authored by Linus Torvalds's avatar Linus Torvalds
parents c5b0079c 1b04624f
...@@ -1338,6 +1338,7 @@ int do_notify_parent(struct task_struct *tsk, int sig) ...@@ -1338,6 +1338,7 @@ int do_notify_parent(struct task_struct *tsk, int sig)
struct siginfo info; struct siginfo info;
unsigned long flags; unsigned long flags;
struct sighand_struct *psig; struct sighand_struct *psig;
int ret = sig;
BUG_ON(sig == -1); BUG_ON(sig == -1);
...@@ -1402,7 +1403,7 @@ int do_notify_parent(struct task_struct *tsk, int sig) ...@@ -1402,7 +1403,7 @@ int do_notify_parent(struct task_struct *tsk, int sig)
* is implementation-defined: we do (if you don't want * is implementation-defined: we do (if you don't want
* it, just use SIG_IGN instead). * it, just use SIG_IGN instead).
*/ */
tsk->exit_signal = -1; ret = tsk->exit_signal = -1;
if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
sig = -1; sig = -1;
} }
...@@ -1411,7 +1412,7 @@ int do_notify_parent(struct task_struct *tsk, int sig) ...@@ -1411,7 +1412,7 @@ int do_notify_parent(struct task_struct *tsk, int sig)
__wake_up_parent(tsk, tsk->parent); __wake_up_parent(tsk, tsk->parent);
spin_unlock_irqrestore(&psig->siglock, flags); spin_unlock_irqrestore(&psig->siglock, flags);
return sig; return ret;
} }
static void do_notify_parent_cldstop(struct task_struct *tsk, int why) static void do_notify_parent_cldstop(struct task_struct *tsk, int why)
......
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