Mercurial > hg > Game > Cerium
annotate example/post_function/ppe/Hello.cc @ 135:ac436cebae2a draft
remove xml file
author | gongo@charles.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 27 Nov 2008 16:19:50 +0900 |
parents | 028ffc9c0375 |
children | 768452fab95e |
rev | line source |
---|---|
109 | 1 #include <stdio.h> |
2 #include "SchedTask.h" | |
3 #include "Hello.h" | |
4 #include "Func.h" | |
5 | |
6 /* ¤³¤ì¤Ïɬ¿Ü */ | |
7 SchedDefineTask(Hello); | |
8 | |
9 int | |
10 Hello::run(void *rbuf, void *wbuf) | |
11 { | |
12 int id = get_param(0); | |
13 | |
14 printf("Hello, World!! post_func output %d\n", id); | |
15 | |
16 return 0; | |
17 } |