Searched refs:maxproc (Results 1 - 11 of 11) sorted by relevance

/xnu-2782.1.97/tools/tests/libMicro/
H A Dcreate_stuff.sh4 echo limit maxproc 1000 2000 >> /etc/launchd.conf
/xnu-2782.1.97/bsd/dev/
H A Dunix_startup.c317 maxproc *= scale;
318 maxprocperuid = (maxproc * 2) / 3;
322 maxproc = 2500 * scale;
323 hard_maxproc = maxproc;
325 maxprocperuid = (maxproc*3)/4;
/xnu-2782.1.97/bsd/conf/
H A Dparam.c88 int maxproc = NPROC; variable
/xnu-2782.1.97/bsd/kern/
H A Dkern_resource.c1115 * Only root can set to the maxproc limits, as it is
1117 * maxprocperuid (presumably less than maxproc).
1120 if (limp->rlim_cur > (rlim_t)maxproc)
1121 limp->rlim_cur = maxproc;
1122 if (limp->rlim_max > (rlim_t)maxproc)
1123 limp->rlim_max = maxproc;
H A Dkern_fork.c378 * processes, maxproc is the limit.
382 if ((nprocs >= maxproc - 1 && uid != 0) || nprocs >= maxproc) {
H A Dbsd_init.c618 limit0.pl_rlimit[RLIMIT_NPROC].rlim_max = maxproc;
H A Dkern_proc.c209 pidhashtbl = hashinit(maxproc / 4, M_PROC, &pidhash);
210 pgrphashtbl = hashinit(maxproc / 4, M_PROC, &pgrphash);
211 sesshashtbl = hashinit(maxproc / 4, M_PROC, &sesshash);
212 uihashtbl = hashinit(maxproc / 16, M_PROC, &uihash);
H A Dkern_sysctl.c1579 int error = sysctl_io_number(req, maxproc, sizeof(int), &new_value, &changed);
1585 maxproc = new_value;
1750 SYSCTL_PROC(_kern, KERN_MAXPROC, maxproc,
H A Dkern_memorystatus.c781 memorystatus_jetsam_snapshot_max = maxproc;
/xnu-2782.1.97/osfmk/atm/
H A Datm.c58 extern int maxproc;
1358 /* Check if the number of live entries in list is less than maxproc */
1359 assert((j - (freed_count + dead_but_not_freed)) <= maxproc);
/xnu-2782.1.97/bsd/sys/
H A Dproc_internal.h638 extern int nprocs, maxproc; /* Current and max number of procs. */

Completed in 73 milliseconds