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

/illumos-gate/usr/src/uts/common/io/
H A Dptms_conf.c144 * pt_max_pty: Maximum number of pseudo-terminals in the system. The system
145 * should not allocate more ptys than pt_max_pty (although, it may
151 * Both pt_cnt and pt_max_pty may be modified during system lifetime
160 * determined as minimum of pt_max_pty and calculated value.
198 size_t pt_max_pty = 0; /* Maximum number of ptys */ variable
349 * Since pt_max_pty may be zero, the formula below is used to
350 * avoid conditional expression. It will equal to pt_max_pty if
353 size_t user_max = (pt_max_pty == 0 ? ptms_ptymax : pt_max_pty);

Completed in 57 milliseconds