comparison example/word_count/ppe/RunFinish.h @ 393:72b73beb3325

add word_count
author e065725@localhost.localdomain
date Tue, 15 Sep 2009 16:30:46 +0900
parents
children 44c0bce54dcf
comparison
equal deleted inserted replaced
392:690631340d58 393:72b73beb3325
1 #ifndef INCLUDED_TASK_RUNFINISH
2 #define INCLUDED_TASK_RUNFINISH
3
4 #ifndef INCLUDED_SCHED_TASK
5 # include "SchedTask.h"
6 #endif
7
8 class RunFinish : public SchedTask {
9 public:
10 SchedConstructor(RunFinish);
11
12 int run(void *r, void *w);
13 };
14
15 #endif