view Fifo/SchedTask.h @ 5:91a07e20e06d

commit.
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 25 Dec 2009 17:53:11 +0900
parents
children
line wrap: on
line source

#ifndef _SCHEDTASK_H
#define _SCHEDTASK_H

#include "user.h"
#include "Task.h"

typedef struct _SchedTask {
	Task *task;
	Taskrun nextcode;
	void *rbuff;
	void *wbuff;
} SchedTask;

#endif /* !_SCHEDTASK_H */