diff options
author | Simon Marlow <marlowsd@gmail.com> | 2014-06-09 09:18:12 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2015-04-07 09:57:49 +0100 |
commit | a7ab161602aa0b5833d22c66e64eebb1d9275235 (patch) | |
tree | 22db09216cbd2165359d8add08b5cf4cdbf5041f /includes/Rts.h | |
parent | 72092904e0ac1725c05c0447e1efe7ab541faa95 (diff) | |
download | haskell-a7ab161602aa0b5833d22c66e64eebb1d9275235.tar.gz |
Replace hooks by callbacks in RtsConfig (#8785)
Summary:
Hooks rely on static linking semantics, and are broken by -Bsymbolic
which we need when using dynamic linking.
Test Plan: Built it
Reviewers: austin, hvr, tibbe
Differential Revision: https://phabricator.haskell.org/D8
Diffstat (limited to 'includes/Rts.h')
-rw-r--r-- | includes/Rts.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/includes/Rts.h b/includes/Rts.h index 77eeb31f3a..190200aa34 100644 --- a/includes/Rts.h +++ b/includes/Rts.h @@ -220,7 +220,6 @@ INLINE_HEADER Time fsecondsToTime (double t) /* Other RTS external APIs */ #include "rts/Parallel.h" -#include "rts/Hooks.h" #include "rts/Signals.h" #include "rts/BlockSignals.h" #include "rts/Hpc.h" |