changeset 24366:274b79aeb3b7

(memory_warnings) [WINDOWSNT]: Reset lim_data on each run, since size can vary from run to run.
author Andrew Innes <andrewi@gnu.org>
date Sat, 20 Feb 1999 20:50:20 +0000
parents 9f92c0ff8fe8
children f9d5fff966f0
files src/vm-limit.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/vm-limit.c	Sat Feb 20 20:48:10 1999 +0000
+++ b/src/vm-limit.c	Sat Feb 20 20:50:20 1999 +0000
@@ -130,4 +130,9 @@
 
   warn_function = warnfun;
   __after_morecore_hook = check_memory_limits;
+
+#ifdef WINDOWSNT
+  /* Force data limit to be recalculated on each run.  */
+  lim_data = 0;
+#endif
 }