| 1473 | } |
| 1474 | |
| 1475 | void OSInitThreadQueueEx(OSThreadQueue* threadQueue, void* userData) |
| 1476 | { |
| 1477 | threadQueue->head = nullptr; |
| 1478 | threadQueue->tail = nullptr; |
| 1479 | threadQueue->userData = userData; |
| 1480 | threadQueue->ukn0C = 0; |
| 1481 | } |
| 1482 | |
| 1483 | /* Thread terminator threads (for calling thread deallocators) */ |
| 1484 | struct TerminatorThread |
no outgoing calls
no test coverage detected