Mercurial > hg > Game > Cerium
view example/HelloWorld/ppe/Hello.cc @ 1716:c12df61ded45 draft
fix gpu profile. not work yet
author | Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 15 Oct 2013 17:21:10 +0900 |
parents | 4a5498c98e34 |
children |
line wrap: on
line source
#include <stdio.h> #include "SchedTask.h" #include "Hello.h" #include "Func.h" /* これは必須 */ SchedDefineTask1(Hello,hello); static int hello(SchedTask *smanager, void *rbuf, void *wbuf) { int task_id = (long)smanager->get_param(0); smanager->printf("[%d] ppe Hello, World!!\n", task_id); return 0; }