summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_sig.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/kern_sig.c')
-rw-r--r--sys/kern/kern_sig.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index b387237..c57074a 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -62,6 +62,7 @@
#include <sys/ktr.h>
#include <sys/ktrace.h>
#include <sys/resourcevar.h>
+#include <sys/smp.h>
#include <sys/stat.h>
#include <sys/sx.h>
#include <sys/syslog.h>
@@ -70,7 +71,6 @@
#include <sys/malloc.h>
#include <machine/cpu.h>
-#include <machine/smp.h>
#define ONSIG 32 /* NSIG for osig* syscalls. XXX. */
@@ -1301,12 +1301,11 @@ psignal(p, sig)
*/
if (p->p_stat == SRUN) {
signotify(p);
- mtx_unlock_spin(&sched_lock);
#ifdef SMP
forward_signal(p);
#endif
- } else
- mtx_unlock_spin(&sched_lock);
+ }
+ mtx_unlock_spin(&sched_lock);
goto out;
}
/*NOTREACHED*/
OpenPOWER on IntegriCloud