CVSROOT: /cvs Module name: src Changes by: [email protected] 2017/11/13 16:52:49
Modified files:
share/man/man9 : task_add.9
sys/sys : task.h
sys/kern : kern_task.c
Log message:
add taskq_barrier
taskq_barrier guarantees that any task that was running on the taskq
has finished by the time taskq_barrier returns. it is similar to
intr_barrier.
this is needed for use in ifq_barrier as part of an upcoming change.
