Mercurial > hg > Members > kono > Cerium
view example/HelloWorld/spe/Hello.cc @ 802:496a8159e840
global id
author | yutaka@localhost.localdomain |
---|---|
date | Wed, 19 May 2010 14:59:41 +0900 |
parents | ab866bc8a624 |
children | f8e9c985e2a8 |
line wrap: on
line source
#include <stdio.h> #include "Hello.h" #include "Func.h" /* これは必須 */ SchedDefineTask(Hello); static int run(SchedTask *smanager, void *rbuf, void *wbuf) { long task_id = (long)smanager->get_param(0); smanager->printf("[%ld] Hello, World!!\n", task_id); return 0; }