What is the maximum limit to the number of processes possible in a linux system? How can we find it ?
Your kernel should export this information in procfs
:
cat /proc/sys/kernel/pid_max
This is the maximum number of unique process identifiers your system can support.
Since it is a file, /proc/sys/kernel/pid_max
can be inspected from any capable programming language.