Mercurial > hg > Members > kono > Cerium
annotate example/post_function/ppe/task_init.cc @ 540:c5a411c19e7e
merge
author | tkaito@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Wed, 21 Oct 2009 20:02:23 +0900 |
parents | 58fd16298954 |
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 } |