CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2022/08/15 03:10:36
Modified files: sys/kern : kern_task.c Log message: Stop doing lockless `t_flags' check within task_add(9) and task_del(9). This doesn't work on MP systems. We do locked `t_flags' check just after lockless check, so just remove it. ok dlg@