summaryrefslogtreecommitdiff
path: root/rts/RtsStartup.c
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2014-06-11 20:54:58 +0100
committerSimon Peyton Jones <simonpj@microsoft.com>2014-06-11 20:56:39 +0100
commit7f467d0fbb1424f638a0d39caf57b9c0198421a8 (patch)
tree941802c76dc9354a4afb2c997fcfab492bfe3e5f /rts/RtsStartup.c
parent7d9feb264a4fc3c15d1e5f88f2e7a04202ed9743 (diff)
downloadhaskell-7f467d0fbb1424f638a0d39caf57b9c0198421a8.tar.gz
Fix Windows build (wibble to fix for Trac #4934)
Diffstat (limited to 'rts/RtsStartup.c')
-rw-r--r--rts/RtsStartup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsStartup.c b/rts/RtsStartup.c
index c9f5880774..8e7e11dd26 100644
--- a/rts/RtsStartup.c
+++ b/rts/RtsStartup.c
@@ -209,12 +209,12 @@ hs_init_ghc(int *argc, char **argv[], RtsConfig rts_config)
getStablePtr((StgPtr)nonTermination_closure);
getStablePtr((StgPtr)blockedIndefinitelyOnSTM_closure);
getStablePtr((StgPtr)nestedAtomically_closure);
- getStablePtr((StgPtr)blockedOnBadFD_closure);
getStablePtr((StgPtr)runSparks_closure);
getStablePtr((StgPtr)ensureIOManagerIsRunning_closure);
getStablePtr((StgPtr)ioManagerCapabilitiesChanged_closure);
#ifndef mingw32_HOST_OS
+ getStablePtr((StgPtr)blockedOnBadFD_closure);
getStablePtr((StgPtr)runHandlers_closure);
#endif