17 lines
771 B
C
17 lines
771 B
C
/**************************************************************************
|
|
* NAME: tasks.h *
|
|
* PURPOSE: Defining the the scheduler to be used in the system to organize*
|
|
* the runtime for the tasks in the system based on priority. *
|
|
* INFORMATION: *
|
|
* GLOBAL VARIABLES: *
|
|
* Variable Type Description *
|
|
* -------- ---- ----------- *
|
|
***************************************************************************/
|
|
|
|
#ifndef SCHEDULER_TASKS_H_
|
|
#define SCHEDULER_TASKS_H_
|
|
|
|
|
|
|
|
#endif /* SCHEDULER_TASKS_H_ */
|