summaryrefslogtreecommitdiff
path: root/rts/Task.c
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2007-02-20 09:54:56 +0000
committerSimon Marlow <simonmar@microsoft.com>2007-02-20 09:54:56 +0000
commit3f82e352ede25e6c3be4b3f5a32dcf313d9a0315 (patch)
treeebeb80916169fd152d8d73995554ee9fca34d065 /rts/Task.c
parentca8ac445fedf1ef7604ba0b21f2bca0abe461ef8 (diff)
downloadhaskell-3f82e352ede25e6c3be4b3f5a32dcf313d9a0315.tar.gz
freeTaskManager: don't free Tasks that are still in use
See conc059.
Diffstat (limited to 'rts/Task.c')
-rw-r--r--rts/Task.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/rts/Task.c b/rts/Task.c
index 4a630843b7..4301ab4b59 100644
--- a/rts/Task.c
+++ b/rts/Task.c
@@ -84,12 +84,18 @@ freeTaskManager (void)
ACQUIRE_LOCK(&sched_mutex);
for (task = all_tasks; task != NULL; task = next) {
+ next = task->all_link;
+ if (task->stopped) {
+ // We only free resources if the Task is not in use. A
+ // Task may still be in use if we have a Haskell thread in
+ // a foreign call while we are attempting to shut down the
+ // RTS (see conc059).
#if defined(THREADED_RTS)
- closeCondition(&task->cond);
- closeMutex(&task->lock);
+ closeCondition(&task->cond);
+ closeMutex(&task->lock);
#endif
- next = task->all_link;
- stgFree(task);
+ stgFree(task);
+ }
}
all_tasks = NULL;
task_free_list = NULL;