Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1199 giacomo 1
#ifndef __PARSER_H__
2
#define __PARSER_H__
3
 
4
#include <kernel/kern.h>
5
 
6
struct loader_task {
7
  int number;
8
  int task_level;
9
  int task_type;
10
  struct timespec wcet;
11
  int exec_type;
12
  struct timespec exec_par_1;
13
  struct timespec exec_par_2;
14
  struct timespec exec_par_3;
15
  int act_type;
16
  struct timespec act_par_1;
17
  struct timespec act_par_2;
18
  struct timespec act_par_3;
19
  struct timespec act_par_4;
20
  struct loader_task *next;
21
};
22
 
23
int line_parser(void);
24
 
25
#endif
26