view 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
line wrap: on
line source

#include "Task.h"
#include "taskinit.h"


const int max_tasktype = MAX_TASKCLASS;
extern __code nojob(void *, void *, void *);

#undef DEFINETASKTYPE
#define DEFINETASKTYPE(_var, _code0, _name, _type) \
	{ _code0, _name, _type }, 

const TaskType tasktypes[] = {
	{ nojob, "no jobs", F_NONE },
	{ nojob, "no jobs", F_NONE },
	#include "task.def"
};