Initial commit
[scheduler.git] / parser.h
blobeba57f1a48e18da2b3695681307c23d19c52388c
1 struct complex_task {
2 char * task_id;
3 float phase;
4 float period;
5 float t_cpu;
6 float deadline;
7 };
9 struct task {
10 char * task_id;
11 float t_cpu;
12 float period;