summaryrefslogtreecommitdiff
path: root/rts/RtsSignals.h
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2009-08-29 13:28:14 +0000
committerSimon Marlow <marlowsd@gmail.com>2009-08-29 13:28:14 +0000
commit254528e32a007e508bb5967948ba02aa15c7e482 (patch)
tree9d65bdb603dddd016ec1159f39b881a851f2c7d6 /rts/RtsSignals.h
parent95ec750f94236c2ae127a147d7c9bebec036bcab (diff)
downloadhaskell-254528e32a007e508bb5967948ba02aa15c7e482.tar.gz
Fix incorrectly hidden RTS symbols
Diffstat (limited to 'rts/RtsSignals.h')
-rw-r--r--rts/RtsSignals.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/rts/RtsSignals.h b/rts/RtsSignals.h
index 3b569df5d3..b222272e12 100644
--- a/rts/RtsSignals.h
+++ b/rts/RtsSignals.h
@@ -46,23 +46,6 @@ void resetDefaultHandlers(void);
void freeSignalHandlers(void);
/*
- * Function: blockUserSignals()
- *
- * Temporarily block the delivery of further console events. Needed to
- * avoid race conditions when GCing the queue of outstanding handlers or
- * when emptying the queue by running the handlers.
- *
- */
-void blockUserSignals(void);
-
-/*
- * Function: unblockUserSignals()
- *
- * The inverse of blockUserSignals(); re-enable the deliver of console events.
- */
-void unblockUserSignals(void);
-
-/*
* Function: awaitUserSignals()
*
* Wait for the next console event. Currently a NOP (returns immediately.)