CVSROOT: /cvs Module name: src Changes by: v...@cvs.openbsd.org 2020/04/07 06:52:27
Modified files: sys/kern : kern_event.c Log message: Defer selwakeup() from kqueue_wakeup() to kqueue_task() to prevent deep recursion. This also helps making kqueue_wakeup() free of the kernel lock because the current implementation of selwakeup() requires the lock. OK mpi@