summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rts/RtsDllMain.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/rts/RtsDllMain.c b/rts/RtsDllMain.c
index 250b63ea68..3e5af6864e 100644
--- a/rts/RtsDllMain.c
+++ b/rts/RtsDllMain.c
@@ -30,7 +30,11 @@ DllMain ( HINSTANCE hInstance
* you pass to the RTS.
*/
switch (reason) {
- case DLL_PROCESS_DETACH: shutdownHaskell();
+
+ // shutdownHaskelAndExit() is already being called,
+ // so I don't think we need this. BL 2009/11/17
+
+ //case DLL_PROCESS_DETACH: shutdownHaskell();
}
return TRUE;
}