diff options
Diffstat (limited to 'lib/Task.cc')
-rw-r--r-- | lib/Task.cc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/Task.cc b/lib/Task.cc index 60a9872..bc7c7a0 100644 --- a/lib/Task.cc +++ b/lib/Task.cc @@ -4,7 +4,7 @@ #include "Task.h" #include "String.h" -Task::Task() : current(0), state(TASK_ON_HOLD), stopped(false), cleanup(false), suspended(false), wbta(0) { +Task::Task() : current(0), state(TASK_ON_HOLD), stopped(false), suspended(false), wbta(0) { TaskMan::AddTask(this); } @@ -70,14 +70,6 @@ void Task::SetBurst() { state = TASK_BURST; } -void Task::SetCleanUp() { - cleanup = true; -} - -bool Task::HasToClean() { - return cleanup; -} - void Task::Stop() { stopped = true; } |