diff options
author | Ian Lynagh <igloo@earth.li> | 2012-03-19 15:06:05 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-03-19 15:06:05 +0000 |
commit | a3dc885bd1e13ef4951b8e36feb5258677b963d4 (patch) | |
tree | edc303af0822afdb3ed8242a9a2519dac91978d4 /rts/Schedule.c | |
parent | 6260064eb5cb05778e2b66d556154e2045e89bf2 (diff) | |
download | haskell-a3dc885bd1e13ef4951b8e36feb5258677b963d4.tar.gz |
Use win32AllocStack on Win64 too
Diffstat (limited to 'rts/Schedule.c')
-rw-r--r-- | rts/Schedule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Schedule.c b/rts/Schedule.c index aa22e06bd9..7dca76438b 100644 --- a/rts/Schedule.c +++ b/rts/Schedule.c @@ -611,7 +611,7 @@ schedulePreLoop(void) { // initialisation for scheduler - what cannot go into initScheduler() -#if defined(mingw32_HOST_OS) && defined(i386_HOST_ARCH) && !defined(GhcUnregisterised) +#if defined(mingw32_HOST_OS) && !defined(GhcUnregisterised) win32AllocStack(); #endif } |