comparison example/word_count3/spe/Hello.cc @ 527:7d9d209bdc82

add word_count3
author yutaka@henri.cr.ie.u-ryukyu.ac.jp
date Tue, 20 Oct 2009 16:28:16 +0900
parents
children
comparison
equal deleted inserted replaced
526:214cd21049e0 527:7d9d209bdc82
1 #include <stdio.h>
2 #include "SchedTask.h"
3 #include "Hello.h"
4 #include "Func.h"
5
6 /* これは必須 */
7 SchedDefineTask(Hello);
8
9 static int
10 run(SchedTask *s, void *rbuf, void *wbuf)
11 {
12 printf("Hello, World!!\n");
13
14 return 0;
15 }