* Suspend the timer interrupt handling. */
| 201 | * Suspend the timer interrupt handling. |
| 202 | */ |
| 203 | static void Timer_InterruptSuspend(void) |
| 204 | { |
| 205 | #if defined(_WIN32) |
| 206 | if (s_timerThread != NULL) DeleteTimerQueueTimer(NULL, s_timerThread, NULL); |
| 207 | s_timerThread = NULL; |
| 208 | #else |
| 209 | setitimer(ITIMER_REAL, NULL, NULL); |
| 210 | #endif /* _WIN32 */ |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Resume the timer interrupt handling. |