summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2024-11-19 23:40:27 -0800
committerVito Caputo <vcaputo@pengaru.com>2024-11-19 23:40:27 -0800
commitd202b2472e10850eadbf2f10a9b5a635a267a8ce (patch)
treedd78aa6dc8ff9aa6829f51dbe898a7b24fbd13e8 /src
parent2ba5bd244dabfc425563cf7615c702c60deda584 (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/libvmon/vmon.h2
1 files changed, 1 insertions, 1 deletions
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 {
© All Rights Reserved