Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/task/InitKey.cc @ 1039:b9cd0c88b69a
AllExecute speparation.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 07 Dec 2010 23:59:46 +0900 |
parents | 496a8159e840 |
children |
rev | line source |
---|---|
507 | 1 #include <stdlib.h> |
2 #include <string.h> | |
3 #include "InitKey.h" | |
4 #include "Func.h" | |
5 #include "KeyStat.h" | |
6 | |
7 SchedDefineTask(InitKey); | |
8 | |
9 static int | |
10 run(SchedTask *smanager, void *rbuf , void *wbuf) | |
11 { | |
12 | |
13 smanager->global_alloc(KEY_STATUS, sizeof(key_stat)); | |
14 | |
15 return 0; | |
16 } |