Mercurial > hg > Game > Cerium
view example/post_function/ppe/Hello.cc @ 1699:0a70abda2ab6 draft
profile for gpu
author | kkb |
---|---|
date | Fri, 04 Oct 2013 20:05:17 +0900 |
parents | 94d82f2c842f |
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) { long id = (long)s->get_param(0); s->printf("Hello, World!! post_func output %ld\n", id); return 0; }