* Resume the timer interrupt handling. */
| 214 | * Resume the timer interrupt handling. |
| 215 | */ |
| 216 | static 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 |