| 1421 | } |
| 1422 | |
| 1423 | void UsbViewerWriteThread(void*) { |
| 1424 | while(true) { |
| 1425 | rwlockWriteLock(&g_UsbRwLock); |
| 1426 | usbCommsWrite(g_UsbViewerBuffer, UsbPacketSize); |
| 1427 | rwlockWriteUnlock(&g_UsbRwLock); |
| 1428 | svcSleepThread(1'000'000ul); |
| 1429 | } |
| 1430 | } |
| 1431 | |
| 1432 | void UsbViewerRgbaThread(void*) { |
| 1433 | bool tmp_flag; |
nothing calls this directly
no outgoing calls
no test coverage detected