xref: /xnu-10002.1.13/tools/tests/perf_index/test_fault_helper.h (revision 1031c584a5e37aff177559b9f69dbd3c8c3fd30a)
1 #ifndef __TEST_FAULT_HELPER_H_
2 #define __TEST_FAULT_HELPER_H_
3 
4 typedef enum {
5 	TESTZFOD,
6 	TESTFAULT
7 } testtype_t;
8 
9 int test_fault_setup();
10 int test_fault_helper(int thread_id, int num_threads, long long length, testtype_t testtype);
11 
12 #endif
13