Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1243 → Rev 1244

/demos/trunk/loader/lparser.h
39,7 → 39,22
 
};
 
int line_parser(char **buf, int line_num, struct timespec *total, struct loader_task **last);
struct loader_contract {
 
int number;
struct timespec cmin;
struct timespec tmax;
struct timespec cmax;
struct timespec tmin;
int workload;
 
struct loader_contract *next;
 
};
 
int line_parser_contract(char **buf, int line_num, struct timespec *total_time, struct loader_contract **last);
 
int line_parser_task(char **buf, int line_num, struct loader_task **last);
 
#endif