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

/xnu-2422.115.4/osfmk/pmc/
H A Dpmc.c212 static queue_head_t *perf_counters_queue = NULL; variable
288 perf_counters_queue = (queue_head_t*)kalloc(sizeof(queue_head_t));
289 assert(perf_counters_queue);
291 queue_init(perf_counters_queue);
562 * perf_counters_queue.
567 queue_remove(perf_counters_queue, pmc, pmc_t, link);
575 * pmc_enqueue adds the given, newly registered pmc to the perf_counters_queue
580 queue_enter(perf_counters_queue, pmc, pmc_t, link);
600 queue_iterate(perf_counters_queue, element, pmc_t, link) {
2177 queue_iterate(perf_counters_queue, pm
[all...]

Completed in 33 milliseconds