Mercurial > hg > Members > kono > Cerium
diff example/post_function/ppe/Hello.cc @ 109:5c194c71eca8
Cerium cvs version
author | gongo@gendarme.local |
---|---|
date | Wed, 12 Nov 2008 17:39:33 +0900 |
parents | |
children | 58fd16298954 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/post_function/ppe/Hello.cc Wed Nov 12 17:39:33 2008 +0900 @@ -0,0 +1,17 @@ +#include <stdio.h> +#include "SchedTask.h" +#include "Hello.h" +#include "Func.h" + +/* ¤³¤ì¤Ïɬ¿Ü */ +SchedDefineTask(Hello); + +int +Hello::run(void *rbuf, void *wbuf) +{ + int id = get_param(0); + + printf("Hello, World!! post_func output %d\n", id); + + return 0; +}