Mercurial > hg > Members > kono > Cerium
annotate example/post_function/spe/spe-main.cc @ 984:df5185513c2d
minor fix
author | root@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 01 Oct 2010 01:25:45 +0900 |
parents | 44c0bce54dcf |
children |
rev | line source |
---|---|
109 | 1 #include "Func.h" |
2 #include "Scheduler.h" | |
3 | |
4 SchedExternTask(Hello); | |
5 | |
6 /** | |
298 | 7 * この関数は SpeScheduler から呼ばれるので |
8 * 必ずこの関数名でお願いします。 | |
109 | 9 */ |
10 void | |
467
44c0bce54dcf
fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
298
diff
changeset
|
11 task_init(Scheduler *s) |
109 | 12 { |
13 SchedRegisterTask(HELLO_TASK, Hello); | |
14 } |