We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd994c5 commit 3a242c1Copy full SHA for 3a242c1
freebsd/kern/kern_event.c
@@ -2221,7 +2221,11 @@ kqueue_wakeup(struct kqueue *kq)
2221
kq->kq_state &= ~KQ_SEL;
2222
}
2223
if (!knlist_empty(&kq->kq_sel.si_note))
2224
- kqueue_schedtask(kq);
+#ifndef FSTACK
2225
+ kqueue_schedtask(kq);
2226
+#else
2227
+ KNOTE_UNLOCKED(&kq->kq_sel.si_note, 0);
2228
+#endif
2229
if ((kq->kq_state & KQ_ASYNC) == KQ_ASYNC) {
2230
pgsigio(&kq->kq_sigio, SIGIO, 0);
2231
0 commit comments