Home
last modified time | relevance | path

Searched refs:hard_maxproc (Results 1 – 5 of 5) sorted by relevance

/xnu-8019.80.24/bsd/conf/ !
H A Dparam.c97 int hard_maxproc = NPROC; /* hardcoded limit -- for ARM the number of processes is limited by… variable
99 int hard_maxproc = HNPROC; /* hardcoded limit */ variable
/xnu-8019.80.24/bsd/dev/ !
H A Dunix_startup.c351 hard_maxproc = maxproc; in bsd_scale_setup()
381 if (maxproc > hard_maxproc) { in bsd_scale_setup()
382 hard_maxproc = maxproc; in bsd_scale_setup()
/xnu-8019.80.24/bsd/sys/ !
H A Dproc_internal.h722 extern int hard_maxproc; /* hard limit */
/xnu-8019.80.24/osfmk/arm/ !
H A Dpmap.c377 extern int maxproc, hard_maxproc;
2728 if ((uint32_t)hard_maxproc > pmap_max_asids) { in pmap_init()
2729 hard_maxproc = pmap_max_asids; in pmap_init()
/xnu-8019.80.24/bsd/kern/ !
H A Dkern_sysctl.c1708 if (new_value <= hard_maxproc && new_value > 0) { in sysctl_maxproc()