mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 11:16:11 +00:00
Revert "[PATCH] make kernel/signal.c:kill_proc_info() static"
This reverts commit d3228a887c
.
DeBunk this code. We need it for compat_sys_rt_sigqueueinfo.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
This commit is contained in:
parent
d104f11c39
commit
c3de4b3815
2 changed files with 3 additions and 1 deletions
|
@ -1329,6 +1329,7 @@ extern int kill_pgrp(struct pid *pid, int sig, int priv);
|
|||
extern int kill_pid(struct pid *pid, int sig, int priv);
|
||||
extern int __kill_pg_info(int sig, struct siginfo *info, pid_t pgrp);
|
||||
extern int kill_pg_info(int, struct siginfo *, pid_t);
|
||||
extern int kill_proc_info(int, struct siginfo *, pid_t);
|
||||
extern void do_notify_parent(struct task_struct *, int);
|
||||
extern void force_sig(int, struct task_struct *);
|
||||
extern void force_sig_specific(int, struct task_struct *);
|
||||
|
|
|
@ -1137,7 +1137,8 @@ int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
|
|||
return error;
|
||||
}
|
||||
|
||||
static int kill_proc_info(int sig, struct siginfo *info, pid_t pid)
|
||||
int
|
||||
kill_proc_info(int sig, struct siginfo *info, pid_t pid)
|
||||
{
|
||||
int error;
|
||||
rcu_read_lock();
|
||||
|
|
Loading…
Reference in a new issue