diff options
| author | Pixel <pixel@nobis-crew.org> | 2011-11-17 14:02:47 -0800 | 
|---|---|---|
| committer | Pixel <pixel@nobis-crew.org> | 2011-11-17 14:02:47 -0800 | 
| commit | e617d26a9291c69988321a812dc5e1f3578e743b (patch) | |
| tree | 3374dbd43a01fccd3fa331595b45a8224ed03dba | |
| parent | b9d76f0b574be1dcd991f26d9ca3d63e4b09731f (diff) | |
Forgot to remove this; we shouldn't free the stack from the Task itself anymore: the task manager takes care of this now.
| -rw-r--r-- | src/Task.cc | 2 | 
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);  } | 
