diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/example/word_count/ppe/RunFinish.h	Tue Sep 15 16:30:46 2009 +0900
@@ -0,0 +1,15 @@
+#ifndef INCLUDED_TASK_RUNFINISH
+#define INCLUDED_TASK_RUNFINISH
+
+#ifndef INCLUDED_SCHED_TASK
+#  include "SchedTask.h"
+#endif
+
+class RunFinish : public SchedTask {
+public:
+    SchedConstructor(RunFinish);
+    
+    int run(void *r, void *w);
+};
+
+#endif