Home
last modified time | relevance | path

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

/xnu-11417.101.15/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-11417.101.15/bsd/dev/
H A Dunix_startup.c352 hard_maxproc = maxproc; in bsd_scale_setup()
382 if (maxproc > hard_maxproc) { in bsd_scale_setup()
383 hard_maxproc = maxproc; in bsd_scale_setup()
/xnu-11417.101.15/bsd/sys/
H A Dproc_internal.h746 extern int hard_maxproc; /* hard limit */
/xnu-11417.101.15/osfmk/arm64/sptm/pmap/
H A Dpmap.c461 extern int maxproc, hard_maxproc;
2195 if ((uint32_t)hard_maxproc > pmap_max_asids) { in pmap_init()
2196 hard_maxproc = pmap_max_asids; in pmap_init()
/xnu-11417.101.15/osfmk/arm/pmap/
H A Dpmap.c405 extern int maxproc, hard_maxproc;
2842 if ((uint32_t)hard_maxproc > pmap_max_asids) { in pmap_init()
2843 hard_maxproc = pmap_max_asids; in pmap_init()
/xnu-11417.101.15/bsd/kern/
H A Dkern_sysctl.c1795 if (new_value <= hard_maxproc && new_value > 0) {