#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <pthread.h>
#include <unistd.h>
#include <signal.h>
#include <sys/time.h>
#include "taskScheduler.h"
Go to the source code of this file.
Functions | |
void | timer_new_task (TASK_S *task, void(*runFunction)(void)) |
Create a task. More... | |
void | timer_start_task (TASK_S *task, void(*alertFunction)(int), int period_us) |
Start some task. More... | |
void | timer_function_task (TASK_S *task) |
void | timer_stop_task (TASK_S *task) |
Stop some task. More... | |
void timer_function_task | ( | TASK_S * | task | ) |
Definition at line 76 of file taskScheduler.c.
References TASK_S::run, and status.
Referenced by control_hook(), and ui_hook().