Mercurial > hg > Members > kono > Cerium
annotate example/post_function/spe/spe-main.cc @ 467:44c0bce54dcf
fix all examples. test_render is not working now.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 01 Oct 2009 19:25:25 +0900 |
parents | 58fd16298954 |
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 } |