CVSROOT: /cvs Module name: src Changes by: v...@cvs.openbsd.org 2021/11/22 07:57:17
Modified files: sys/kern : sys_futex.c Log message: Let futex_wait() run without kernel lock The KERNEL_LOCK() is no longer necessary with rwsleep() and PCATCH because the sleep machinery now does the locking internally. OK mpi@