comparison 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
comparison
equal deleted inserted replaced
4:5a3e2b0622fd 5:91a07e20e06d
1 #ifndef _SCHEDTASK_H
2 #define _SCHEDTASK_H
3
4 #include "user.h"
5 #include "Task.h"
6
7 typedef struct _SchedTask {
8 Task *task;
9 Taskrun nextcode;
10 void *rbuff;
11 void *wbuff;
12 } SchedTask;
13
14 #endif /* !_SCHEDTASK_H */