Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/task/UpdateKey.cc @ 639:70c5c2d2eb24
fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 19 Nov 2009 18:45:24 +0900 |
parents | 735f76483bb2 |
children | 496a8159e840 |
rev | line source |
---|---|
507 | 1 #include "TaskManager.h" |
2 #include "KeyStat.h" | |
3 #include "UpdateKey.h" | |
4 #include "global_alloc.h" | |
5 | |
6 SchedDefineTask(UpdateKey); | |
7 | |
8 static int | |
9 run(SchedTask *smanager, void *rbuf, void *wbuf) | |
10 { | |
11 key_stat *key = (key_stat*)smanager->get_input(rbuf, 0); | |
12 key_stat *gdata = (key_stat*)smanager->global_get(KEY_STATUS); | |
13 memcpy(gdata, key, sizeof(key_stat)); | |
14 | |
15 return 0; | |
16 } |