summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/kern_thread.c')
-rw-r--r--sys/kern/kern_thread.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c
index f70dec5..078a6e9 100644
--- a/sys/kern/kern_thread.c
+++ b/sys/kern/kern_thread.c
@@ -273,9 +273,12 @@ kse_thr_interrupt(struct thread *td, struct kse_thr_interrupt_args *uap)
struct proc *p;
struct thread *td2;
+ p = td->td_proc;
+ /* KSE-enabled processes only, please. */
+ if (!(p->p_flag & P_KSES))
+ return (EINVAL);
if (uap->tmbx == NULL)
return (EINVAL);
- p = td->td_proc;
mtx_lock_spin(&sched_lock);
FOREACH_THREAD_IN_PROC(p, td2) {
if (td2->td_mailbox == uap->tmbx) {
OpenPOWER on IntegriCloud