Mercurial > hg > Members > kono > Cerium
annotate example/task_queue/main.h @ 772:e53ae444ac6f
Test/property_chain is work
author | hiroki@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Mon, 15 Feb 2010 13:33:29 +0900 |
parents | 58240647b23b |
children | 02f1a707ee82 |
rev | line source |
---|---|
492 | 1 #include "TaskQueueInfo.h" |
2 #include "TaskManager.h" | |
3 | |
4 #define MAX_QUEUE 4 | |
5 | |
6 typedef struct queues { | |
7 int i; | |
496
58240647b23b
PS3 double linked TaskQueue worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
492
diff
changeset
|
8 int j; |
492 | 9 TaskManager *m; |
10 TaskQueueInfo *q[MAX_QUEUE]; | |
11 } Queues, *QueuePtr; |