| 151 | }; |
| 152 | |
| 153 | Thread* threadCreate(ThreadEntryPoint entryPoint, void* data) |
| 154 | { |
| 155 | Thread* createThread = static_cast<Thread*>(gUtilAllocator.allocate(sizeof(Thread), 0, 0, 0)); |
| 156 | PX_PLACEMENT_NEW(createThread, Thread(entryPoint, data)); |
| 157 | createThread->start(); |
| 158 | return createThread; |
| 159 | } |
| 160 | |
| 161 | void threadQuit(Thread* thread) |
| 162 | { |
no test coverage detected