mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
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>
This commit is contained in:
parent
dd34200adc
commit
7486e5d9fc
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user