1 /* -----------------------------------------------------------------------------
3 * User-overridable RTS hooks.
5 * ---------------------------------------------------------------------------*/
11 OutOfHeapHook (lnat request_size, lnat heap_size) /* both sizes in bytes */
13 /* fprintf(stderr, "Heap exhausted;\nwhile trying to allocate %lu bytes in a %lu-byte heap;\nuse `+RTS -H<size>' to increase the total heap size.\n", */
15 (void)request_size; /* keep gcc -Wall happy */
16 fprintf(stderr, "Heap exhausted;\nCurrent maximum heap size is %lu bytes (%lu Mb);\nuse `+RTS -M<size>' to increase it.\n",
17 heap_size, heap_size / (1024*1024));