summaryrefslogtreecommitdiff
path: root/src/Task.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-11-17 14:02:47 -0800
committerPixel <pixel@nobis-crew.org>2011-11-17 14:02:47 -0800
commite617d26a9291c69988321a812dc5e1f3578e743b (patch)
tree3374dbd43a01fccd3fa331595b45a8224ed03dba /src/Task.cc
parentb9d76f0b574be1dcd991f26d9ca3d63e4b09731f (diff)
Forgot to remove this; we shouldn't free the stack from the Task itself anymore: the task manager takes care of this now.
Diffstat (limited to 'src/Task.cc')
-rw-r--r--src/Task.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Task.cc b/src/Task.cc
index 440ed0e..6a94267 100644
--- a/src/Task.cc
+++ b/src/Task.cc
@@ -43,8 +43,6 @@ void Balau::Task::setup(TaskMan * taskMan, void * stack) {
}
Balau::Task::~Task() {
- if (m_stack)
- m_taskMan->freeStack(m_stack);
free(m_tls);
}