Searched defs:max_nprocs (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/conf/
H A Dparam.c307 int max_nprocs; /* set in param_init() */ variable
622 if (max_nprocs == 0)
623 max_nprocs = (10 + 16 * maxusers);
624 if (platform_max_nprocs > 0 && max_nprocs > platform_max_nprocs)
625 max_nprocs = platform_max_nprocs;
626 if (max_nprocs > maxpid)
627 max_nprocs = maxpid;
630 maxuprc = (max_nprocs - reserved_procs);
642 v.v_proc = max_nprocs; /* v_proc - max # of processes system wide */
643 v.v_maxupttl = max_nprocs
[all...]

Completed in 60 milliseconds