diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-01-17 21:54:06 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-01-17 23:39:34 +0000 |
commit | b14ddb2fa6259b1a376c112197d061d0786124cc (patch) | |
tree | 7c2eea1d0cb82bfc450da6b68a79013bd5955b03 /includes | |
parent | 0dc9f1c7ea41699519e14d269dc22077ad725a69 (diff) | |
download | haskell-b14ddb2fa6259b1a376c112197d061d0786124cc.tar.gz |
Expose genericRaise; fixes signals004(dyn) no OS X 32
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/Utils.h | 3 |
1 files changed, 3 insertions, 0 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 */ |