summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-01-17 21:54:06 +0000
committerIan Lynagh <ian@well-typed.com>2013-01-17 23:39:34 +0000
commitb14ddb2fa6259b1a376c112197d061d0786124cc (patch)
tree7c2eea1d0cb82bfc450da6b68a79013bd5955b03
parent0dc9f1c7ea41699519e14d269dc22077ad725a69 (diff)
downloadhaskell-b14ddb2fa6259b1a376c112197d061d0786124cc.tar.gz
Expose genericRaise; fixes signals004(dyn) no OS X 32
-rw-r--r--includes/rts/Utils.h3
-rw-r--r--rts/RtsUtils.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/includes/rts/Utils.h b/includes/rts/Utils.h
index 1258f6daa3..1cb52ae83f 100644
--- a/includes/rts/Utils.h
+++ b/includes/rts/Utils.h
@@ -18,4 +18,7 @@
HsInt genSymZh(void);
HsInt resetGenSymZh(void);
+/* Alternate to raise(3) for threaded rts, for BSD-based OSes */
+int genericRaise(int sig);
+
#endif /* RTS_UTILS_H */
diff --git a/rts/RtsUtils.h b/rts/RtsUtils.h
index b571126828..5d825a2118 100644
--- a/rts/RtsUtils.h
+++ b/rts/RtsUtils.h
@@ -43,9 +43,6 @@ void heapCheckFail( void );
void printRtsInfo(void);
-/* Alternate to raise(3) for threaded rts, for OpenBSD */
-int genericRaise(int sig);
-
void checkFPUStack(void);
#include "EndPrivate.h"