Searched refs:queues (Results 1 - 7 of 7) sorted by relevance

/darwin-on-arm/xnu/bsd/net/
H A Dpf_ruleset.c189 TAILQ_INIT(&ruleset->rules[i].queues[0]);
190 TAILQ_INIT(&ruleset->rules[i].queues[1]);
191 ruleset->rules[i].active.ptr = &ruleset->rules[i].queues[0];
192 ruleset->rules[i].inactive.ptr = &ruleset->rules[i].queues[1];
H A Dpfvar.h1188 struct pf_rulequeue queues[2]; member in struct:pf_ruleset::__anon264
/darwin-on-arm/xnu/osfmk/kern/
H A Dsched.h193 queue_head_t queues[NRQS]; /* one for each priority */ member in struct:run_queue
H A Dsched_proto.c304 queue = rq->queues + rq->highq;
439 if (queue_empty(rq->queues + thread->sched_pri)) {
H A Dwait_queue.c63 * Primitives for manipulating wait queues: either global
138 uint32_t hsize, queues; local
143 queues = thread_max / 11;
144 hsize = P2ROUNDUP(queues * sizeof(struct wait_queue), PAGE_SIZE);
185 panic("kernel_memory_allocate() failed to allocate wait queues, error: %d, whsize: 0x%x", kret, whsize);
199 "wait queues");
568 * the wait queue than there are wait queues associated with
987 * member wait queues and all the sets it may be a member of.
1011 /* remove the wait queues that are members of our set */
1044 * member wait queues an
[all...]
H A Dsched_prim.c1990 queue_t queue = rq->queues + rq->highq;
2711 queue_init(&rq->queues[i]);
2810 queue_t queue = rq->queues + rq->highq;
2848 queue_t queue = rq->queues + thread->sched_pri;
2895 if (queue_empty(rq->queues + thread->sched_pri)) {
3639 queue_t queue = rq->queues + rq->highq;
3735 * This may cause the thread to change queues.
3784 q = &rq->queues[thread->sched_pri];
3854 * run queues because the caller locked the thread. Otherwise
3862 * The processor run queues ar
[all...]
/darwin-on-arm/xnu/osfmk/pmc/
H A Dpmc.c194 static lck_mtx_t cpu_monitor_queue_mutex; /* protects per-cpu queues at initialisation time */
198 /* Reservation tracking queues lock */
202 * Tracking queues
216 * Reservation queues
278 * init_pmc_queues allocates and initializes the tracking queues for
321 /* build our tracking queues */
397 queue_head_t **queues; local
404 queues = (queue_head_t**)kalloc(sizeof(queue_head_t*) * max_cpus);
405 assert(queues);
410 queues[
[all...]

Completed in 43 milliseconds