[project @ 1996-07-25 20:43:49 by partain]
[ghc-hetmet.git] / ghc / runtime / hooks / OutOfHeap.lc
index a1c6110..8db9fa8 100644 (file)
@@ -2,11 +2,8 @@
 #include "rtsdefs.h"
 
 void
-OutOfHeapHook (request_size)
-  W_ request_size; /* in bytes */
+OutOfHeapHook (W_ request_size, W_ heap_size) /* both sizes in bytes */
 {
-    W_ heap_size = RTSflags.GcFlags.heapSize * sizeof(W_); /* i.e., in bytes */
-
     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",
        request_size,
        heap_size);