| 13 | } |
| 14 | |
| 15 | JASTaskThread::~JASTaskThread() |
| 16 | { |
| 17 | void *mem; |
| 18 | BOOL recieved; |
| 19 | while (TRUE) |
| 20 | { |
| 21 | mem = waitMessage(&recieved); |
| 22 | if (!recieved) |
| 23 | break; |
| 24 | JASKernel::getCommandHeap()->free(mem); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | void *JASTaskThread::allocCallStack(JASTaskCb taskCb, const void *src, u32 size) |
| 29 | { |
nothing calls this directly
no test coverage detected