]> git.saurik.com Git - apple/xnu.git/blob - tests/kperf_helpers.h
238d37afb39d955a07b728cbd8b86f631fbeb5cf
[apple/xnu.git] / tests / kperf_helpers.h
1 #ifndef KPERF_HELPERS_H
2 #define KPERF_HELPERS_H
3
4 #include <unistd.h>
5 #include <stdbool.h>
6
7 void configure_kperf_stacks_timer(pid_t pid, unsigned int period_ms,
8 bool quiet);
9
10 #define PERF_SAMPLE KDBG_EVENTID(DBG_PERF, 0, 0)
11 #define PERF_KPC_PMI KDBG_EVENTID(DBG_PERF, 6, 0)
12
13 #endif /* !defined(KPERF_HELPERS_H) */