MCPcopy Create free account
hub / github.com/OpenDUNE/OpenDUNE / Timer_InterruptResume

Function Timer_InterruptResume

src/timer.c:216–223  ·  view source on GitHub ↗

* Resume the timer interrupt handling. */

Source from the content-addressed store, hash-verified

214 * Resume the timer interrupt handling.
215 */
216static void Timer_InterruptResume(void)
217{
218#if defined(_WIN32)
219 CreateTimerQueueTimer(&s_timerThread, NULL, Timer_InterruptWindows, NULL, s_timerTime, s_timerTime, WT_EXECUTEINTIMERTHREAD);
220#else
221 setitimer(ITIMER_REAL, &s_timerTime, NULL);
222#endif /* _WIN32 */
223}
224
225#endif /* !defined(TOS) */
226

Callers 1

Timer_InitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected