repo.or.cz
/
scheduler.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit
[scheduler.git]
/
parser.h
blob
eba57f1a48e18da2b3695681307c23d19c52388c
1
struct
complex_task
{
2
char
*
task_id
;
3
float
phase
;
4
float
period
;
5
float
t_cpu
;
6
float
deadline
;
7
};
8
9
struct
task
{
10
char
*
task_id
;
11
float
t_cpu
;
12
float
period
;
13
};