From 9929d65658fc3abd0097c6dcc4409bf48fb0ab91 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Tue, 15 Apr 2003 19:01:02 +0200 Subject: [PATCH] Increased the maximum for the alloc threshold; modern systems with high load can reach 10 million allocations within five minutes or so. Rev: src/gc.h:1.102 --- src/gc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gc.h b/src/gc.h index 5f7e7fa3b9..e061c4ff3c 100644 --- a/src/gc.h +++ b/src/gc.h @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: gc.h,v 1.101 2003/03/30 20:26:49 mast Exp $ +|| $Id: gc.h,v 1.102 2003/04/15 17:01:02 mast Exp $ */ #ifndef GC_H @@ -45,7 +45,7 @@ extern double gc_average_slowness; * Put a cap on that threshold to avoid very small and large * intervals. */ #define GC_MIN_ALLOC_THRESHOLD 1000 -#define GC_MAX_ALLOC_THRESHOLD 10000000 +#define GC_MAX_ALLOC_THRESHOLD 2000000000 extern struct pike_queue gc_mark_queue; extern INT32 num_objects; -- GitLab