| 91 | } |
| 92 | |
| 93 | void gxCmdQueueStop(gxCmdQueue_s* queue) |
| 94 | { |
| 95 | if (!curQueue) |
| 96 | return; |
| 97 | LightLock_Lock(&queueLock); |
| 98 | if (!isRunning) |
| 99 | { |
| 100 | curQueue = NULL; |
| 101 | isActive = false; |
| 102 | } else |
| 103 | shouldStop = true; |
| 104 | LightLock_Unlock(&queueLock); |
| 105 | } |
| 106 | |
| 107 | bool gxCmdQueueWait(gxCmdQueue_s* queue, s64 timeout) |
| 108 | { |
nothing calls this directly
no test coverage detected