Mercurial > hg > Members > kono > Cerium
view example/post_function/spe/Hello.cc @ 1048:40cde8c1a6cd default tip
add ScaleXY (not for allExecute...)
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 08 Dec 2010 06:22:15 +0900 |
parents | ab866bc8a624 |
children |
line wrap: on
line source
#include <stdio.h> #include "SchedTask.h" #include "Hello.h" #include "Func.h" /* これは必須 */ SchedDefineTask(Hello); static int run(SchedTask *s, void *rbuf, void *wbuf) { int id = (long)s->get_param(0); printf("Hello, World!! post_func output %d\n", id); return 0; }