I have the following code, which I'm trying to calculate all process. I do not understand how to calculate the maximum number of process.
#include <stdio.h>
#include <stdlib.h>
int main()
{
int pid, pidmax = 0;
while(1)
{
pid = fork();
pidmax = getpid();
if(pid == 0){
if(pidmax < getpid())
pidmax = getpid();
printf("pid: %d, max: %d\n", getpid(), pidmax);
return 0;
}
if(pid == -1) {
printf("Maximum process: %d\n", pidmax);
exit(-1);
}
}
return 0;
}
There are much easier ways to do this rather than via experimentation.
Most Unix systems provide
ulimit
to show you the various soft (ie. user defined) and hard (ie. admin defined) limits on your account. For example, here's my soft and hard limits on OS X.While the system may support more processes, your program will be limited by these limits. I am limited to 709 (what an odd number) processes and can raise it to 1064.
The maximum number of processes at a single time is limited by the size of
pid_t
and often by a restriction defined in the kernel. See this answer and also this answer for more detail.