summaryrefslogtreecommitdiffstats
path: root/src/H5FL.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-08-31 23:11:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-08-31 23:11:06 (GMT)
commite85425db198491b76dbe3dada5e68d93043d16cb (patch)
tree3c291e60b66b41fe74d354a0dc828534bac41586 /src/H5FL.c
parent312cd2c57d7a8488e2a21d65c074862cba8e7663 (diff)
downloadhdf5-e85425db198491b76dbe3dada5e68d93043d16cb.zip
hdf5-e85425db198491b76dbe3dada5e68d93043d16cb.tar.gz
hdf5-e85425db198491b76dbe3dada5e68d93043d16cb.tar.bz2
[svn-r2502] Added limits to the free lists, so they will automatically garbage collect and
not eat all the memory in the machine (by default :-)
Diffstat (limited to 'src/H5FL.c')
-rw-r--r--src/H5FL.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5FL.c b/src/H5FL.c
index dceba3e..897e98a 100644
--- a/src/H5FL.c
+++ b/src/H5FL.c
@@ -34,12 +34,12 @@ static intn interface_initialize_g = 0;
Default limits on how much memory can accumulate on each free list before
it is garbage collected.
*/
-static size_t H5FL_reg_glb_mem_lim=UINT_MAX; /* Default to no limit on all regular free lists */
-static size_t H5FL_reg_lst_mem_lim=UINT_MAX; /* Default to no limit on each regular free list */
-static size_t H5FL_arr_glb_mem_lim=UINT_MAX; /* Default to no limit on all array free lists */
-static size_t H5FL_arr_lst_mem_lim=UINT_MAX; /* Default to no limit on each array free list */
-static size_t H5FL_blk_glb_mem_lim=UINT_MAX; /* Default to no limit on all block free lists */
-static size_t H5FL_blk_lst_mem_lim=UINT_MAX; /* Default to no limit on each block free list */
+static size_t H5FL_reg_glb_mem_lim=1*16*65536;/* Default to 1MB limit on all regular free lists */
+static size_t H5FL_reg_lst_mem_lim=1*65536; /* Default to 64KB limit on each regular free list */
+static size_t H5FL_arr_glb_mem_lim=4*16*65536;/* Default to 4MB limit on all array free lists */
+static size_t H5FL_arr_lst_mem_lim=4*65536; /* Default to 256KB limit on each array free list */
+static size_t H5FL_blk_glb_mem_lim=16*16*65536; /* Default to 16MB limit on all block free lists */
+static size_t H5FL_blk_lst_mem_lim=16*65536; /* Default to 1024KB (1MB) limit on each block free list */
/* A garbage collection node for regular free lists */
typedef struct H5FL_reg_gc_node_t {