summaryrefslogtreecommitdiff
path: root/ghc/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/runtime')
-rw-r--r--ghc/runtime/hooks/NoRunnableThrds.lc13
1 files changed, 9 insertions, 4 deletions
diff --git a/ghc/runtime/hooks/NoRunnableThrds.lc b/ghc/runtime/hooks/NoRunnableThrds.lc
index c9b351c4b8..4bb693ee83 100644
--- a/ghc/runtime/hooks/NoRunnableThrds.lc
+++ b/ghc/runtime/hooks/NoRunnableThrds.lc
@@ -1,14 +1,19 @@
+Hook to invoke when there's nothing left on the runnable threads
+queue {\em and} we've got nothing to wait for. The value
+returned is the exit code to report back.
+
+NOTE: This hook is really CONCURRENT specific, but we include
+it in the way-independent libHSclib.a.
\begin{code}
-#ifdef CONCURRENT /* the whole thing! */
#include "rtsdefs.h"
-void
+int
NoRunnableThreadsHook (void)
{
+ fflush(stdout);
fprintf(stderr, "No runnable threads!\n");
+ return(EXIT_FAILURE);
}
-#endif /* CONCURRENT */
-
\end{code}