kthread_q         125 kern/kern_kthread.c struct kthread_q {
kthread_q         126 kern/kern_kthread.c 	SIMPLEQ_ENTRY(kthread_q) kq_q;
kthread_q         131 kern/kern_kthread.c SIMPLEQ_HEAD(, kthread_q) kthread_q = SIMPLEQ_HEAD_INITIALIZER(kthread_q);
kthread_q         141 kern/kern_kthread.c 	struct kthread_q *kq;
kthread_q         156 kern/kern_kthread.c 	SIMPLEQ_INSERT_TAIL(&kthread_q, kq, kq_q);
kthread_q         162 kern/kern_kthread.c 	struct kthread_q *kq;
kthread_q         167 kern/kern_kthread.c 	while ((kq = SIMPLEQ_FIRST(&kthread_q)) != NULL) {
kthread_q         168 kern/kern_kthread.c 		SIMPLEQ_REMOVE_HEAD(&kthread_q, kq_q);