summaryrefslogtreecommitdiff
path: root/cmake/config/lib.cmake
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2026-05-03 18:21:33 +0200
committerSander Vrijders <sander@ouroboros.rocks>2026-05-20 08:17:06 +0200
commitea864c3d3e8ff75ffbbc1e3f01db09daa9b7a5c8 (patch)
tree09973abf8cdadbe0a2d43589442b62ec69011b18 /cmake/config/lib.cmake
parent875df4e784530430b13e77f4c37e37466db4ef3c (diff)
downloadouroboros-ea864c3d3e8ff75ffbbc1e3f01db09daa9b7a5c8.tar.gz
ouroboros-ea864c3d3e8ff75ffbbc1e3f01db09daa9b7a5c8.zip
lib: Rename PROG_* config to PROC_*
Per-process flow / fd / fqueue limits are properties of a process, not a program; align the naming. Mechanical rename of PROG_MAX_FLOWS, PROG_RES_FDS, and PROG_MAX_FQUEUES to PROC_*. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'cmake/config/lib.cmake')
-rw-r--r--cmake/config/lib.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmake/config/lib.cmake b/cmake/config/lib.cmake
index aba580f1..7e685ce0 100644
--- a/cmake/config/lib.cmake
+++ b/cmake/config/lib.cmake
@@ -4,11 +4,11 @@
# Flow limits
set(SYS_MAX_FLOWS 10240 CACHE STRING
"Maximum number of total flows for this system")
-set(PROG_MAX_FLOWS 4096 CACHE STRING
+set(PROC_MAX_FLOWS 4096 CACHE STRING
"Maximum number of flows in an application")
-set(PROG_RES_FDS 64 CACHE STRING
+set(PROC_RES_FDS 64 CACHE STRING
"Number of reserved flow descriptors per application")
-set(PROG_MAX_FQUEUES 32 CACHE STRING
+set(PROC_MAX_FQUEUES 32 CACHE STRING
"Maximum number of flow sets per application")
# Threading