⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

MAX_PROCESSES

Constant MAX_PROCESSES 

Source
pub const MAX_PROCESSES: usize = 1024;
Expand description

Maximum number of concurrent processes (including zombies awaiting reaping).

This limit is enforced in fork() to prevent unbounded process table growth during workloads like BusyBox native compilation (213+ sequential gcc invocations). Zombie processes count against this limit until reaped by their parent via waitpid().