2 These routines customise the error messages
3 for various bits of the RTS. They are linked
4 in instead of the defaults.
21 RtsFlags.GcFlags.heapSizeSuggestion = 6*1024*1024 / BLOCK_SIZE;
22 RtsFlags.GcFlags.maxStkSize = 8*1024*1024 / sizeof(W_);
23 RtsFlags.GcFlags.giveStats = COLLECT_GC_STATS;
24 RtsFlags.GcFlags.statsFile = stderr;
28 StackOverflowHook (unsigned long stack_size) /* in bytes */
30 fprintf(stderr, "GHC stack-space overflow: current limit is %ld bytes.\nUse the `-K<size>' option to increase it.\n", stack_size);