MCPcopy Create free account
hub / github.com/cemu-project/Cemu / IOS_StopTimer

Function IOS_StopTimer

src/Cafe/IOSU/kernel/iosu_kernel.cpp:238–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236 }
237
238 IOS_ERROR IOS_StopTimer(IOSTimerId timerId)
239 {
240 std::unique_lock _l(sTimerMutex);
241 if (timerId >= sTimers.size() || !sTimers[timerId].isValid)
242 return IOS_ERROR_INVALID;
243 IOS_StopTimerInternal(timerId);
244 return IOS_ERROR_OK;
245 }
246
247 IOS_ERROR IOS_DestroyTimer(IOSTimerId timerId)
248 {

Callers

nothing calls this directly

Calls 2

IOS_StopTimerInternalFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected