comparison example/get_segment/ppe/Hello1.h @ 440:0f3605d1ee73

fix get_segment exaple PPE task
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 25 Sep 2009 01:47:03 +0900
parents
children 01b321c86747
comparison
equal deleted inserted replaced
439:95c0457a7d31 440:0f3605d1ee73
1 #ifndef INCLUDED_TASK_HELLO
2 #define INCLUDED_TASK_HELLO
3
4 #ifndef INCLUDED_SCHED_TASK
5 # include "SchedTask.h"
6 #endif
7
8 class Hello1 : public SchedTask {
9 public:
10 SchedConstructor(Hello1);
11
12 int run(SchedTask *smanager, void *r, void *w);
13 };
14
15 #endif