summaryrefslogtreecommitdiff
path: root/rts/hooks
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2021-07-23 05:11:59 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-08-09 15:11:58 -0400
commitfc350dba63da7eefbaa2793fe9fe99f8571b75c0 (patch)
treea607a0c9ddc2d051cc282d29a9285fbb8aa347e3 /rts/hooks
parentdb7098fe7aa3f7324d146821334b774032ea87bd (diff)
downloadhaskell-fc350dba63da7eefbaa2793fe9fe99f8571b75c0.tar.gz
Make `PosixSource.h` installed and under `rts/`
is used outside of the rts so we do this rather than just fish it out of the repo in ad-hoc way, in order to make packages in this repo more self-contained.
Diffstat (limited to 'rts/hooks')
-rw-r--r--rts/hooks/FlagDefaults.c2
-rw-r--r--rts/hooks/LongGCSync.c2
-rw-r--r--rts/hooks/MallocFail.c2
-rw-r--r--rts/hooks/OnExit.c2
-rw-r--r--rts/hooks/OutOfHeap.c2
-rw-r--r--rts/hooks/StackOverflow.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/rts/hooks/FlagDefaults.c b/rts/hooks/FlagDefaults.c
index 1307fa0239..741745524f 100644
--- a/rts/hooks/FlagDefaults.c
+++ b/rts/hooks/FlagDefaults.c
@@ -4,7 +4,7 @@
*
* ---------------------------------------------------------------------------*/
-#include "PosixSource.h"
+#include "rts/PosixSource.h"
#include "Rts.h"
#include "Hooks.h"
diff --git a/rts/hooks/LongGCSync.c b/rts/hooks/LongGCSync.c
index 58ee52fa3d..af56d0cb62 100644
--- a/rts/hooks/LongGCSync.c
+++ b/rts/hooks/LongGCSync.c
@@ -4,7 +4,7 @@
*
* ---------------------------------------------------------------------------*/
-#include "PosixSource.h"
+#include "rts/PosixSource.h"
#include "Rts.h"
#include "sm/GC.h"
#include "sm/GCThread.h"
diff --git a/rts/hooks/MallocFail.c b/rts/hooks/MallocFail.c
index 42606b6f34..2948429a50 100644
--- a/rts/hooks/MallocFail.c
+++ b/rts/hooks/MallocFail.c
@@ -4,7 +4,7 @@
*
* ---------------------------------------------------------------------------*/
-#include "PosixSource.h"
+#include "rts/PosixSource.h"
#include "Rts.h"
#include "Hooks.h"
diff --git a/rts/hooks/OnExit.c b/rts/hooks/OnExit.c
index e5e85f5dd3..e571af1853 100644
--- a/rts/hooks/OnExit.c
+++ b/rts/hooks/OnExit.c
@@ -4,7 +4,7 @@
*
* ---------------------------------------------------------------------------*/
-#include "PosixSource.h"
+#include "rts/PosixSource.h"
#include "Rts.h"
#include "Hooks.h"
diff --git a/rts/hooks/OutOfHeap.c b/rts/hooks/OutOfHeap.c
index 20d9809024..8e3ba7dede 100644
--- a/rts/hooks/OutOfHeap.c
+++ b/rts/hooks/OutOfHeap.c
@@ -4,7 +4,7 @@
*
* ---------------------------------------------------------------------------*/
-#include "PosixSource.h"
+#include "rts/PosixSource.h"
#include "Rts.h"
#include "Hooks.h"
#include "RtsFlags.h"
diff --git a/rts/hooks/StackOverflow.c b/rts/hooks/StackOverflow.c
index e1a90097e9..34dd9f64ab 100644
--- a/rts/hooks/StackOverflow.c
+++ b/rts/hooks/StackOverflow.c
@@ -4,7 +4,7 @@
*
* ---------------------------------------------------------------------------*/
-#include "PosixSource.h"
+#include "rts/PosixSource.h"
#include "Rts.h"
#include "Hooks.h"
#include "RtsFlags.h"