]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/testkext/testthreadcall.h
xnu-2422.115.4.tar.gz
[apple/xnu.git] / tools / tests / testkext / testthreadcall.h
1 /*
2 * testthreadcall.h
3 * testkext
4 *
5 */
6
7 #include <IOKit/IOService.h>
8 #include <IOKit/IOLib.h>
9
10 class testthreadcall : public IOService {
11 OSDeclareDefaultStructors(testthreadcall);
12
13 virtual bool start( IOService * provider );
14
15 public:
16 thread_call_t tcall;
17 IOSimpleLock *tlock;
18 };