diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2017-04-17 22:10:04 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2017-04-21 22:46:25 -0500 |
commit | 6c478ae9204b489f6228e4b535c6ac72851e06d8 (patch) | |
tree | 8a32cd564a855210689e4f93907fde3d0b9aca13 /include/linux/sched/signal.h | |
parent | cad4ea546b1a8a700d269e41ac5db182057d7a32 (diff) | |
download | op-kernel-dev-6c478ae9204b489f6228e4b535c6ac72851e06d8.zip op-kernel-dev-6c478ae9204b489f6228e4b535c6ac72851e06d8.tar.gz |
signal: Make kill_proc_info static
There are no users outside of signal.c so make the function static so
the compiler and other developers have that information.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'include/linux/sched/signal.h')
-rw-r--r-- | include/linux/sched/signal.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/sched/signal.h b/include/linux/sched/signal.h index 2cf4467..c06d63b3 100644 --- a/include/linux/sched/signal.h +++ b/include/linux/sched/signal.h @@ -293,7 +293,6 @@ extern int kill_pid_info_as_cred(int, struct siginfo *, struct pid *, const struct cred *, u32); 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_proc_info(int, struct siginfo *, pid_t); extern __must_check bool do_notify_parent(struct task_struct *, int); extern void __wake_up_parent(struct task_struct *p, struct task_struct *parent); extern void force_sig(int, struct task_struct *); |