| 216 | } |
| 217 | |
| 218 | void IOS_StopTimerInternal(IOSTimerId timerId) |
| 219 | { |
| 220 | cemu_assert_debug(!sTimerMutex.try_lock()); |
| 221 | IOS_TimerSetNextFireTime(sTimers[timerId], 0); |
| 222 | } |
| 223 | |
| 224 | IOS_ERROR IOS_CreateTimer(uint32 startMicroseconds, uint32 repeatMicroseconds, uint32 queueId, uint32 message) |
| 225 | { |
no test coverage detected