Searched refs:tq (Results 1 - 4 of 4) sorted by relevance

/xnu-2782.1.97/bsd/dev/dtrace/
H A Ddtrace_glue.c986 taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags) argument
989 thread_call_setup( (thread_call_t) tq, (thread_call_func_t)_taskq_apply, (thread_call_param_t)func );
990 thread_call_enter1( (thread_call_t) tq, (thread_call_param_t)arg );
991 return (taskqid_t) tq /* for lack of anything better */;
995 taskq_destroy(taskq_t *tq) argument
997 thread_call_cancel( (thread_call_t) tq );
998 thread_call_free( (thread_call_t) tq );
/xnu-2782.1.97/bsd/kern/
H A Dtty.c1327 struct clist tq; local
1330 tq = tp->t_rawq;
1332 tp->t_canq = tq;
1944 struct clist tq; local
1951 tq = tp->t_rawq;
1954 while ((c = getc(&tq)) >= 0)
H A Dkern_event.c2794 struct kqtailq *tq = kn->kn_tq; local
2797 TAILQ_INSERT_TAIL(tq, kn, kn_tqe);
2810 struct kqtailq *tq = kn->kn_tq; local
2812 TAILQ_REMOVE(tq, kn, kn_tqe);
/xnu-2782.1.97/osfmk/vm/
H A Dvm_resident.c5073 struct vm_pageout_queue *tq; local
5185 tq = NULL;
5189 tq = iq;
5191 tq = eq;
5193 if (tq != NULL) {
5205 tq->pgo_throttled = TRUE;
5207 assert_wait_timeout((event_t) &tq->pgo_laundry, THREAD_INTERRUPTIBLE, 1000, 1000*NSEC_PER_USEC);
5217 if (!VM_PAGE_Q_THROTTLED(tq))
5227 if (tq == eq) {

Completed in 56 milliseconds