[commit: ghc] ghc-7.6: Expose genericRaise; fixes signals004(dyn) no OS X 32 (56d0328)

Ian Lynagh igloo at earth.li
Fri Jan 18 00:19:01 CET 2013


Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : ghc-7.6

http://hackage.haskell.org/trac/ghc/changeset/56d03280f0eb633e2ce497f2b41efa7ac6a3614d

>---------------------------------------------------------------

commit 56d03280f0eb633e2ce497f2b41efa7ac6a3614d
Author: Ian Lynagh <ian at well-typed.com>
Date:   Thu Jan 17 21:54:06 2013 +0000

    Expose genericRaise; fixes signals004(dyn) no OS X 32

>---------------------------------------------------------------

 includes/rts/Utils.h |    3 +++
 rts/RtsUtils.h       |    3 ---
 validate             |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/includes/rts/Utils.h b/includes/rts/Utils.h
index 1258f6d..1cb52ae 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 b571126..5d825a2 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"
diff --git a/validate b/validate
index 7db30fb..ecd8067 100755
--- a/validate
+++ b/validate
@@ -160,7 +160,7 @@ SLOW)
         BINDIST="BINDIST=YES"
         ;;
 NORMAL)
-        MAKE_TEST_TARGET=test
+        MAKE_TEST_TARGET=fulltest
         BINDIST="BINDIST=YES"
         ;;
 FAST)





More information about the ghc-commits mailing list