summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien 'Xfennec' Lollivier <julien@oniti.fr>2023-10-13 10:45:36 +0200
committerJulien 'Xfennec' Lollivier <julien@oniti.fr>2023-10-13 10:45:36 +0200
commit208422ad2928e34eb9196cefdf45ffac8d357de7 (patch)
tree516611c45ba9b1c5208d8fd09873da0b1dc11f61
parent472067696c34aebd2a5f2411d7db2d31cd5751d6 (diff)
bump MAX_PIDS and MAX_RESULTS to 128HEADv0.17master
-rw-r--r--progress.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/progress.h b/progress.h
index ee7b800..842098f 100644
--- a/progress.h
+++ b/progress.h
@@ -25,11 +25,11 @@
#include "hlist.h"
-#define PROGRESS_VERSION "0.16"
+#define PROGRESS_VERSION "0.17"
#define PROC_PATH "/proc"
-#define MAX_PIDS 32
-#define MAX_RESULTS 32
+#define MAX_PIDS 128
+#define MAX_RESULTS 128
#define MAX_FD_PER_PID 512
#define LINE_LEN 256