You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
233 B

#ifndef APP_SCHEDULER_H
#define APP_SCHEDULER_H
#include "app_types.h"
void app_scheduler_init(void);
int app_scheduler_push(const app_job_t *job);
int app_scheduler_pop(app_job_t *job);
int app_scheduler_is_empty(void);
#endif