mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 08:31:13 +00:00
print_fatal_signal(): get rid of pt_regs argument
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
94eb22d505
commit
4aaefee589
1 changed files with 3 additions and 2 deletions
|
@ -1159,8 +1159,9 @@ static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
|
||||||
return __send_signal(sig, info, t, group, from_ancestor_ns);
|
return __send_signal(sig, info, t, group, from_ancestor_ns);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_fatal_signal(struct pt_regs *regs, int signr)
|
static void print_fatal_signal(int signr)
|
||||||
{
|
{
|
||||||
|
struct pt_regs *regs = signal_pt_regs();
|
||||||
printk("%s/%d: potentially unexpected fatal signal %d.\n",
|
printk("%s/%d: potentially unexpected fatal signal %d.\n",
|
||||||
current->comm, task_pid_nr(current), signr);
|
current->comm, task_pid_nr(current), signr);
|
||||||
|
|
||||||
|
@ -2349,7 +2350,7 @@ relock:
|
||||||
|
|
||||||
if (sig_kernel_coredump(signr)) {
|
if (sig_kernel_coredump(signr)) {
|
||||||
if (print_fatal_signals)
|
if (print_fatal_signals)
|
||||||
print_fatal_signal(regs, info->si_signo);
|
print_fatal_signal(info->si_signo);
|
||||||
/*
|
/*
|
||||||
* If it was able to dump core, this kills all
|
* If it was able to dump core, this kills all
|
||||||
* other threads in the group and synchronizes with
|
* other threads in the group and synchronizes with
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue