annotate Renderer/Engine/spe/InitKey.cc @ 760:24a37fe8419a
first of all commit, not work Rendering/Test/create_task
author |
hiroki |
date |
Thu, 04 Feb 2010 14:46:09 +0900 |
parents |
735f76483bb2 |
children |
496a8159e840 |
rev |
line source |
507
|
1 #include <stdlib.h>
|
|
2 #include <string.h>
|
|
3 #include "InitKey.h"
|
|
4 #include "Func.h"
|
|
5 #include "global_alloc.h"
|
|
6 #include "KeyStat.h"
|
|
7
|
|
8 SchedDefineTask(InitKey);
|
|
9
|
|
10 static int
|
|
11 run(SchedTask *smanager, void *rbuf , void *wbuf)
|
|
12 {
|
|
13
|
|
14 /*void *key = */ smanager->global_alloc(KEY_STATUS, sizeof(key_stat));
|
|
15
|
|
16 return 0;
|
|
17 }
|