diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/kern_sig.c | 3 | ||||
-rw-r--r-- | sys/sys/signalvar.h | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c index 7f4d3db..ce5680a 100644 --- a/sys/kern/kern_sig.c +++ b/sys/kern/kern_sig.c @@ -82,6 +82,7 @@ static int coredump(struct thread *); static char *expand_name(const char *, uid_t, pid_t); static int killpg1(struct thread *td, int sig, int pgid, int all); +static int issignal(struct thread *p); static int sigprop(int sig); static void stop(struct proc *); static void tdsigwakeup(struct thread *td, int sig, sig_t action); @@ -1886,7 +1887,7 @@ tdsigwakeup(struct thread *td, int sig, sig_t action) * while (sig = cursig(curthread)) * postsig(sig); */ -int +static int issignal(td) struct thread *td; { diff --git a/sys/sys/signalvar.h b/sys/sys/signalvar.h index b0434a3..1173d78 100644 --- a/sys/sys/signalvar.h +++ b/sys/sys/signalvar.h @@ -238,7 +238,6 @@ extern struct mtx sigio_lock; int cursig(struct thread *td); void execsigs(struct proc *p); void gsignal(int pgid, int sig); -int issignal(struct thread *p); void killproc(struct proc *p, char *why); void pgsigio(struct sigio **, int signum, int checkctty); void pgsignal(struct pgrp *pgrp, int sig, int checkctty); |