Subversion Repositories shark

Rev

Rev 1244 | Blame | Compare with Previous | Last modification | View Log | RSS feed

/* Generic Struct for loader task */

#include "lconst.h"

struct loader_task {

  char name[20];
  int task_type;
  int contract;
  int local_scheduler;
  int number;
  int group;
 
  struct timespec deadline;
  struct timespec wcet;
 
  int act_number;
  int act_current;

  struct timespec *act;
  struct timespec *exec;

};

struct loader_contract {

  int number;
  struct timespec cmin;
  struct timespec tmax;
  struct timespec cmax;
  struct timespec tmin;
  int workload;
  int local_scheduler;
  int server;

};