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

/freebsd-10.0-release/sys/compat/ia32/
H A Dia32_sysvec.c91 static u_long ia32_maxdsiz = IA32_MAXDSIZ; variable
92 SYSCTL_ULONG(_compat_ia32, OID_AUTO, maxdsiz, CTLFLAG_RW, &ia32_maxdsiz, 0, "");
93 TUNABLE_ULONG("compat.ia32.maxdsiz", &ia32_maxdsiz);
204 if (ia32_maxdsiz != 0) {
205 if (rl->rlim_cur > ia32_maxdsiz)
206 rl->rlim_cur = ia32_maxdsiz;
207 if (rl->rlim_max > ia32_maxdsiz)
208 rl->rlim_max = ia32_maxdsiz;

Completed in 135 milliseconds