shutdownCapability(): don't bail out after 50 iterations
authorSimon Marlow <simonmar@microsoft.com>
Fri, 25 Aug 2006 10:02:44 +0000 (10:02 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Fri, 25 Aug 2006 10:02:44 +0000 (10:02 +0000)
See comments for details.  Fixes assertion failures in stage 3 build
which appeared after recent closeMutex() addidion.  May fix other
shutdown issues.

rts/Capability.c

index e384e1e..7fc1c57 100644 (file)
@@ -646,7 +646,13 @@ shutdownCapability (Capability *cap, Task *task)
 
     task->cap = cap;
 
-    for (i = 0; i < 50; i++) {
+    // Loop indefinitely until all the workers have exited and there
+    // are no Haskell threads left.  We used to bail out after 50
+    // iterations of this loop, but that occasionally left a worker
+    // running which caused problems later (the closeMutex() below
+    // isn't safe, for one thing).
+
+    for (i = 0; /* i < 50 */; i++) {
        debugTrace(DEBUG_sched, 
                   "shutting down capability %d, attempt %d", cap->no, i);
        ACQUIRE_LOCK(&cap->lock);