X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=rts%2FCapability.c;h=564a20f019cb1582b6c01e285bac7dbd475cd11c;hp=510656f473b6c4911f54e32b12cc50cca2e87b1f;hb=e4fdc426413d178c86d3ba93702aad5eb17734bf;hpb=80ce44f764633347ea15b570e3f758b6e7aecd63 diff --git a/rts/Capability.c b/rts/Capability.c index 510656f..564a20f 100644 --- a/rts/Capability.c +++ b/rts/Capability.c @@ -664,6 +664,30 @@ shutdownCapability (Capability *cap, Task *task) continue; } cap->running_task = task; + + if (cap->spare_workers) { + // Look for workers that have died without removing + // themselves from the list; this could happen if the OS + // summarily killed the thread, for example. This + // actually happens on Windows when the system is + // terminating the program, and the RTS is running in a + // DLL. + Task *t, *prev; + prev = NULL; + for (t = cap->spare_workers; t != NULL; t = t->next) { + if (!osThreadIsAlive(t->id)) { + debugTrace(DEBUG_sched, + "worker thread %p has died unexpectedly", t->id); + if (!prev) { + cap->spare_workers = t->next; + } else { + prev->next = t->next; + } + prev = t; + } + } + } + if (!emptyRunQueue(cap) || cap->spare_workers) { debugTrace(DEBUG_sched, "runnable threads or workers still alive, yielding");