view Renderer/Engine/task/InitKey.cc @ 983:ff74988bbb2a

minor fix
author root@henri.cr.ie.u-ryukyu.ac.jp
date Fri, 01 Oct 2010 00:37:06 +0900
parents 496a8159e840
children
line wrap: on
line source

#include <stdlib.h>
#include <string.h>
#include "InitKey.h"
#include "Func.h"
#include "KeyStat.h"

SchedDefineTask(InitKey);

static int
run(SchedTask *smanager, void *rbuf , void *wbuf)
{
    
    smanager->global_alloc(KEY_STATUS, sizeof(key_stat));
    
    return 0;
}