From d202b2472e10850eadbf2f10a9b5a635a267a8ce Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 19 Nov 2024 23:40:27 -0800 Subject: libvmon: increase VMON_HTAB_SIZE The current value of 128 doesn't really accomodate most the systems I'm dealing with these days... bump to 1024. --- src/libvmon/vmon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libvmon/vmon.h') diff --git a/src/libvmon/vmon.h b/src/libvmon/vmon.h index e4b1593..325a44a 100644 --- a/src/libvmon/vmon.h +++ b/src/libvmon/vmon.h @@ -9,7 +9,7 @@ #include "bitmap.h" #include "list.h" -#define VMON_HTAB_SIZE 128 /* number of buckets in the processes hash table */ +#define VMON_HTAB_SIZE 1024 /* number of buckets in the processes hash table */ #define VMON_ARRAY_GROWBY 5 /* number of elements to grow the processes array */ typedef enum _vmon_flags_t { -- cgit v1.2.3