[commit: ghc] master: Avoid deadlock in freeTask (called by forkProcess) (39630ab)

git at git.haskell.org git at git.haskell.org
Mon Jul 14 02:39:41 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/39630ab15cc0607103dc4ef3d9089de44ef17c2d/ghc

>---------------------------------------------------------------

commit 39630ab15cc0607103dc4ef3d9089de44ef17c2d
Author: Edsko de Vries <edsko at well-typed.com>
Date:   Sun Jul 13 15:19:39 2014 -0500

    Avoid deadlock in freeTask (called by forkProcess)
    
    Summary: Documented in more detail inline with the change.
    
    Test Plan: validate
    
    Reviewers: austin, simonmar, duncan
    
    Reviewed By: austin, simonmar, duncan
    
    Subscribers: simonmar, relrod, carter
    
    Differential Revision: https://phabricator.haskell.org/D59


>---------------------------------------------------------------

39630ab15cc0607103dc4ef3d9089de44ef17c2d
 rts/Task.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/rts/Task.c b/rts/Task.c
index 12c22c4..e191bd0 100644
--- a/rts/Task.c
+++ b/rts/Task.c
@@ -350,6 +350,20 @@ discardTasksExcept (Task *keep)
         next = task->all_next;
         if (task != keep) {
             debugTrace(DEBUG_sched, "discarding task %" FMT_SizeT "", (size_t)TASK_ID(task));
+#if defined(THREADED_RTS)
+            // It is possible that some of these tasks are currently blocked
+            // (in the parent process) either on their condition variable
+            // `cond` or on their mutex `lock`. If they are we may deadlock
+            // when `freeTask` attempts to call `closeCondition` or
+            // `closeMutex` (the behaviour of these functions is documented to
+            // be undefined in the case that there are threads blocked on
+            // them). To avoid this, we re-initialize both the condition
+            // variable and the mutex before calling `freeTask` (we do
+            // precisely the same for all global locks in `forkProcess`).
+            initCondition(&task->cond);
+            initMutex(&task->lock);
+#endif
+
             // Note that we do not traceTaskDelete here because
             // we are not really deleting a task.
             // The OS threads for all these tasks do not exist in



More information about the ghc-commits mailing list