| 205 | } |
| 206 | |
| 207 | void modTimerReschedule(modTimer timer, int firstInterval, int secondInterval) |
| 208 | { |
| 209 | modCriticalSectionDeclare; |
| 210 | modCriticalSectionBegin(); |
| 211 | timer->triggerTime = modMilliseconds() + firstInterval; |
| 212 | timer->repeatInterval = secondInterval; |
| 213 | timer->flags &= ~kTimerFlagUnscheduled; |
| 214 | modCriticalSectionEnd(); |
| 215 | |
| 216 | modTimersScheduleNext(); |
| 217 | } |
| 218 | |
| 219 | void modTimerUnschedule(modTimer timer) |
| 220 | { |
nothing calls this directly
no test coverage detected