| 90 | } |
| 91 | |
| 92 | static void CRON_WakeUp(void) { |
| 93 | // Set conditional variable to wake up CRON thread |
| 94 | pthread_mutex_lock(&cron->condv_mutex); |
| 95 | pthread_cond_signal(&cron->condv); |
| 96 | pthread_mutex_unlock(&cron->condv_mutex); |
| 97 | } |
| 98 | |
| 99 | // determines if task is due |
| 100 | static bool CRON_TaskDue |
no outgoing calls
no test coverage detected