Home
last modified time | relevance | path

Searched refs:ktflags (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/sys/kern/
H A Dkern_threadpool.c385 int ktflags; in threadpool_create() local
406 ktflags = 0; in threadpool_create()
407 ktflags |= KTHREAD_MPSAFE; in threadpool_create()
409 ktflags |= KTHREAD_TS; in threadpool_create()
411 error = kthread_create(pri, ktflags, ci, &threadpool_dispatcher_thread, in threadpool_create()
969 int ktflags; in threadpool_dispatcher_thread() local
1010 ktflags = 0; in threadpool_dispatcher_thread()
1011 ktflags |= KTHREAD_MPSAFE; in threadpool_dispatcher_thread()
1013 ktflags |= KTHREAD_TS; in threadpool_dispatcher_thread()
1016 error = kthread_create(pool->tp_pri, ktflags, in threadpool_dispatcher_thread()