From 8b6b771ca421f4f08f58debbf5459b020cf1bef7 Mon Sep 17 00:00:00 2001 From: Pixel Date: Fri, 23 Nov 2001 12:48:19 +0000 Subject: Working on taskman... --- lib/Task.cc | 26 +++----------------------- 1 file changed, 3 insertions(+), 23 deletions(-) (limited to 'lib/Task.cc') diff --git a/lib/Task.cc b/lib/Task.cc index b54402f..4f36c7b 100644 --- a/lib/Task.cc +++ b/lib/Task.cc @@ -50,7 +50,7 @@ void Task::Suspend() throw (GeneralException) { } void Task::WaitFor(Handle * h, int flags) { - w4ha.push_back(w4ha_t(h, flags)); + TaskMan::WaitFor(h, this, flags); } void Task::WaitFor(Task * t) { @@ -58,31 +58,11 @@ void Task::WaitFor(Task * t) { } void Task::WaitFor(pid_t p) { - w4pr.push_back(w4pr_t(p)); + TaskMan::WaitFor(p, this); } void Task::WaitFor(timeval t, int flags) { - w4to.push_back(w4to_t(t, flags)); -} - -bool Task::WaitingFor(Handle * ha) { - vector::iterator p; - - for (p = w4ha.begin(); p && (p != w4ha.end()); p++) { - if (p->ha == ha) return true; - } - - return false; -} - -bool Task::WaitingFor(pid_t pr) { - vector::iterator p; - - for (p = w4pr.begin(); p && (p != w4pr.end()); p++) { - if (p->pr == pr) return true; - } - - return false; + TaskMan::WaitFor(t, this, flags); } void Task::SetBurst() { -- cgit v1.2.3