Mercurial > hg > Game > Cerium
annotate example/HelloWorld/ppe/task_init.cc @ 298:768452fab95e draft
from EUC to UTF-8
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 07 Jun 2009 15:17:41 +0900 |
parents | 028ffc9c0375 |
children | 839e34d0cc3c |
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 } |