changeset 799:bf4ee251767e

add forgotten virutal
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 19 May 2010 19:49:49 +0900
parents 30f84915713b
children 2708c4a7bade 7ac03079a2b2
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;}