| 217 | } |
| 218 | |
| 219 | void modTimerUnschedule(modTimer timer) |
| 220 | { |
| 221 | modCriticalSectionDeclare; |
| 222 | modCriticalSectionBegin(); |
| 223 | timer->flags |= kTimerFlagUnscheduled; |
| 224 | timer->flags &= ~kTimerFlagFire; |
| 225 | timer->repeatInterval = -1; |
| 226 | modCriticalSectionEnd(); |
| 227 | |
| 228 | modTimersScheduleNext(); |
| 229 | } |
| 230 | |
| 231 | int modTimerGetSecondInterval(modTimer timer) |
| 232 | { |
nothing calls this directly
no test coverage detected