Searched refs:maxprocperuid (Results 1 - 5 of 5) sorted by relevance

/xnu-2422.115.4/bsd/conf/
H A Dparam.c89 int maxprocperuid = NPROC/2; variable
/xnu-2422.115.4/bsd/dev/
H A Dunix_startup.c318 maxprocperuid = (maxproc * 2) / 3;
325 maxprocperuid = (maxproc*3)/4;
/xnu-2422.115.4/bsd/kern/
H A Dkern_resource.c141 SYSCTL_INT(_kern, KERN_MAXPROCPERUID, maxprocperuid, CTLFLAG_RW | CTLFLAG_LOCKED,
142 &maxprocperuid, 0, "Maximum processes allowed per userid" );
896 * maxprocperuid (presumably less than maxproc).
905 if (limp->rlim_cur > (rlim_t)maxprocperuid)
906 limp->rlim_cur = maxprocperuid;
907 if (limp->rlim_max > (rlim_t)maxprocperuid)
908 limp->rlim_max = maxprocperuid;
H A Dbsd_init.c619 limit0.pl_rlimit[RLIMIT_NPROC].rlim_cur = maxprocperuid;
/xnu-2422.115.4/bsd/sys/
H A Dproc_internal.h629 extern int maxprocperuid; /* Current number of procs per uid */

Completed in 21 milliseconds