changeset 799:4a0022cd23fc draft

add forgotten virutal
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 19 May 2010 19:49:49 +0900
parents 2d919c3201f2
children 54f0180cea0f 97b75b9657a2
files TaskManager/kernel/schedule/SchedTaskBase.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/TaskManager/kernel/schedule/SchedTaskBase.h	Tue May 18 18:11:34 2010 +0900
+++ b/TaskManager/kernel/schedule/SchedTaskBase.h	Wed May 19 19:49:49 2010 +0900
@@ -25,10 +25,10 @@
     virtual void read()  {}
     virtual void exec()  {}
     virtual void write() {}
+    virtual SchedTaskBase* next(Scheduler *, SchedTaskBase*) {return 0;}
 
     /* functions */
-    virtual SchedTaskBase* next(Scheduler *, SchedTaskBase*) {return 0;}
-
+    virtual void* get_output(void *buff, int index) { return 0; }
     virtual void* get_input(void *buff, int index) { return 0;}
     virtual memaddr get_param(int index) { return 0;}