summaryrefslogtreecommitdiff
path: root/rts/linker/PEi386.c
diff options
context:
space:
mode:
authorTamar Christina <tamar@zhox.com>2021-02-18 21:16:25 +0000
committerBen Gamari <ben@smart-cactus.org>2021-04-07 18:37:46 -0400
commit3b37baaf54cbc0bb10702127a6aef0321202b951 (patch)
treeaa646403c049abe57d51dddc070ca5efadf124f7 /rts/linker/PEi386.c
parent8581d01ab42b2321ec69422392038dff1ceca4b3 (diff)
downloadhaskell-3b37baaf54cbc0bb10702127a6aef0321202b951.tar.gz
linker: Fix atexit handlers on PE
(cherry picked from commit 54ba8d8a3e810b77ce3df99903b619de8b840c20)
Diffstat (limited to 'rts/linker/PEi386.c')
-rw-r--r--rts/linker/PEi386.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/rts/linker/PEi386.c b/rts/linker/PEi386.c
index 33eb0765a6..ec9d5c9080 100644
--- a/rts/linker/PEi386.c
+++ b/rts/linker/PEi386.c
@@ -327,6 +327,11 @@ void initLinker_PEi386()
HeapSetInformation(code_heap, HeapEnableTerminationOnCorruption,
&HeapInformation, sizeof(HeapInformation));
HeapSetInformation(code_heap, HeapOptimizeResources, NULL, 0);
+
+ /* Register the cleanup routine as an exit handler, this gives other exit handlers
+ a chance to run which may need linker information. Exit handlers are ran in
+ reverse registration order so this needs to be before the linker loads anything. */
+ atexit (exitLinker_PEi386);
}
void exitLinker_PEi386()