diff options
author | Oleg Nesterov <oleg@redhat.com> | 2009-12-15 16:47:24 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 07:20:09 -0800 |
commit | 7486e5d9fc773cb67c29381567bed5236fc9573c (patch) | |
tree | 848f10295391c27ca16c8c58812f5e7a81856280 /kernel/signal.c | |
parent | dd34200adc01c5217ef09b55905b5c2312d65535 (diff) | |
download | op-kernel-dev-7486e5d9fc773cb67c29381567bed5236fc9573c.zip op-kernel-dev-7486e5d9fc773cb67c29381567bed5236fc9573c.tar.gz |
signals: cosmetic, collect_signal: use SI_USER
Trivial, s/0/SI_USER/ in collect_signal() for grep.
This is a bit confusing, we don't know the source of this signal.
But we don't care, and "info->si_code = 0" is imho worse.
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Cc: Roland McGrath <roland@redhat.com>
Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/signal.c')
-rw-r--r-- | kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/signal.c b/kernel/signal.c index b65879d..d7c7f3c 100644 --- a/kernel/signal.c +++ b/kernel/signal.c @@ -423,7 +423,7 @@ still_pending: */ info->si_signo = sig; info->si_errno = 0; - info->si_code = 0; + info->si_code = SI_USER; info->si_pid = 0; info->si_uid = 0; } |