Skip to content

Commit

Permalink
signals: cosmetic, collect_signal: use SI_USER
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Dec 16, 2009
1 parent dd34200 commit 7486e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
*/
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;
}
Expand Down

0 comments on commit 7486e5d

Please sign in to comment.