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

/xnu-2782.1.97/bsd/conf/
H A Dparam.c89 int maxprocperuid = NPROC_PER_UID; variable
/xnu-2782.1.97/bsd/dev/
H A Dunix_startup.c318 maxprocperuid = (maxproc * 2) / 3;
325 maxprocperuid = (maxproc*3)/4;
/xnu-2782.1.97/bsd/kern/
H A Dkern_resource.c145 SYSCTL_INT(_kern, KERN_MAXPROCPERUID, maxprocperuid, CTLFLAG_RW | CTLFLAG_LOCKED,
146 &maxprocperuid, 0, "Maximum processes allowed per userid" );
1117 * maxprocperuid (presumably less than maxproc).
1126 if (limp->rlim_cur > (rlim_t)maxprocperuid)
1127 limp->rlim_cur = maxprocperuid;
1128 if (limp->rlim_max > (rlim_t)maxprocperuid)
1129 limp->rlim_max = maxprocperuid;
H A Dbsd_init.c617 limit0.pl_rlimit[RLIMIT_NPROC].rlim_cur = maxprocperuid;
/xnu-2782.1.97/bsd/sys/
H A Dproc_internal.h639 extern int maxprocperuid; /* Current number of procs per uid */

Completed in 37 milliseconds