comparison src/taskinit.cbc @ 8:07fab8c367b2

made src directory and move all source files into it. support autocont and automake tools.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 08 Jan 2010 14:40:49 +0900
parents taskinit.cbc@299cc57f332b
children f06fb0370caf
comparison
equal deleted inserted replaced
7:299cc57f332b 8:07fab8c367b2
1 #include "Task.h"
2 #include "taskinit.h"
3
4
5 const int max_tasktype = MAX_TASKCLASS;
6 extern __code nojob(void *, void *, void *);
7
8 #undef DEFINETASKTYPE
9 #define DEFINETASKTYPE(_var, _code0, _name, _type) \
10 { _code0, _name, _type },
11
12 const TaskType tasktypes[] = {
13 { nojob, "no jobs", F_NONE },
14 { nojob, "no jobs", F_NONE },
15 #include "task.def"
16 };
17
18
19