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

/macosx-10.10.1/sudo-73/src/
H A Daix.c58 static struct aix_limit aix_limits[] = { variable in typeref:struct:aix_limit
97 for (n = 0; n < sizeof(aix_limits) / sizeof(aix_limits[0]); n++) {
102 if (aix_getlimit(user, aix_limits[n].hard, &val) == 0) {
103 rlim.rlim_max = val == -1 ? RLIM64_INFINITY : val * aix_limits[n].factor;
104 if (aix_getlimit(user, aix_limits[n].soft, &val) == 0)
105 rlim.rlim_cur = val == -1 ? RLIM64_INFINITY : val * aix_limits[n].factor;
110 if (aix_getlimit(user, aix_limits[n].soft, &val) == -1)
112 rlim.rlim_cur = val == -1 ? RLIM64_INFINITY : val * aix_limits[n].factor;
115 switch (aix_limits[
[all...]

Completed in 172 milliseconds