comparison example/post_function/spe/spe-main.cc @ 0:04e28d8d3c6f

first commit
author Daiki KINJYO <e085722@ie.u-ryukyu.ac.jp>
date Mon, 08 Nov 2010 01:23:25 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:04e28d8d3c6f
1 #include "Func.h"
2 #include "Scheduler.h"
3
4 SchedExternTask(Hello);
5
6 /**
7 * この関数は SpeScheduler から呼ばれるので
8 * 必ずこの関数名でお願いします。
9 */
10 void
11 task_init(Scheduler *s)
12 {
13 SchedRegisterTask(HELLO_TASK, Hello);
14 }