Subversion Repositories shark

Rev

Rev 1244 | Go to most recent revision | 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
 
1239 giacomo 3
#include "lconst.h"
1238 giacomo 4
 
1228 giacomo 5
struct loader_task {
6
 
1231 giacomo 7
  char name[20];
1237 giacomo 8
  int task_type;
1245 giacomo 9
  int contract;
1228 giacomo 10
  int local_scheduler;
1237 giacomo 11
  int number;
12
  int group;
13
 
1228 giacomo 14
  struct timespec deadline;
15
  struct timespec wcet;
16
 
1231 giacomo 17
  int act_number;
1237 giacomo 18
  int act_current;
1228 giacomo 19
 
1231 giacomo 20
  struct timespec *act;
21
  struct timespec *exec;
22
 
1225 giacomo 23
};
24
 
1244 giacomo 25
struct loader_contract {
26
 
27
  int number;
28
  struct timespec cmin;
29
  struct timespec tmax;
30
  struct timespec cmax;
31
  struct timespec tmin;
32
  int workload;
1245 giacomo 33
  int local_scheduler;
34
  int server;
1244 giacomo 35
 
1245 giacomo 36
};
1244 giacomo 37