Mercurial > hg > Game > Cerium
annotate example/post_function/ppe/task_init.cc @ 2069:26aa08c9a1de draft default tip
cuda example fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 12 Feb 2017 10:04:55 +0900 |
parents | 768452fab95e |
children |
rev | line source |
---|---|
109 | 1 #include "Func.h" |
2 #include "Scheduler.h" | |
3 | |
298 | 4 /* 必ずこの位置に書いて */ |
109 | 5 SchedExternTask(Hello); |
6 | |
7 /** | |
298 | 8 * この関数は ../spe/spe-main と違って |
9 * 自分で呼び出せばいい関数なので | |
10 * 好きな関数名でおk (SchedRegisterTask は必須) | |
109 | 11 */ |
12 | |
13 void | |
14 task_init(void) | |
15 { | |
16 SchedRegisterTask(HELLO_TASK, Hello); | |
17 } |