Subversion Repositories shark

Rev

Rev 1225 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1228 giacomo 1
/* Generic Struct for loader task */
1225 giacomo 2
 
1228 giacomo 3
struct loader_task {
4
 
5
  int number;
6
  int group;
7
  int server;
8
  int local_scheduler;
9
 
10
  int task_level;
11
  int task_type;
12
 
13
  struct timespec deadline;
14
  struct timespec wcet;
15
 
16
  struct timespec act;
17
  struct timespec exec;
18
 
1225 giacomo 19
};
20
 
1228 giacomo 21
#define MAX_LOADER_TASK 100
1225 giacomo 22
 
1228 giacomo 23
struct loader_task loader_task_list[MAX_LOADER_TASK];
24