diff TaskManager/kernel/schedule/SchedNop.cc @ 42:aa11038dbdc1

*** empty log message ***
author gongo
date Thu, 14 Feb 2008 18:27:37 +0900
parents
children 028ffc9c0375
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TaskManager/kernel/schedule/SchedNop.cc	Thu Feb 14 18:27:37 2008 +0900
@@ -0,0 +1,14 @@
+#include <stdio.h>
+#include "SchedNop.h"
+#include "SchedMail.h"
+#include "error.h"
+
+SchedTaskBase*
+SchedNop::next(Scheduler *m, SchedTaskBase *p)
+{
+    __debug("SchedNop::next()");
+    
+    delete p;
+
+    return new SchedMail(m->connector);
+}