Mercurial > hg > Game > Cerium
annotate example/Bulk/ppe/task_init.cc @ 1491:fd09cdf2f531 draft
select CPU_TYPE
author | Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 08 Aug 2012 13:45:00 +0900 |
parents | ecf63089f5bb |
children |
rev | line source |
---|---|
659 | 1 #include "Func.h" |
2 #include "Scheduler.h" | |
3 | |
4 /* 必ずこの位置に書いて */ | |
5 SchedExternTask(Twice); | |
6 | |
7 /** | |
8 * この関数は ../spe/spe-main と違って | |
9 * 自分で呼び出せばいい関数なので | |
10 * 好きな関数名でおk (SchedRegisterTask は必須) | |
11 */ | |
12 | |
13 void | |
14 task_init(void) | |
15 { | |
689
ecf63089f5bb
Task Array generation worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
659
diff
changeset
|
16 SchedRegister(Twice); |
659 | 17 } |