Searched refs:olim (Results 1 – 1 of 1) sorted by relevance
547 struct orlimit olim; in osetrlimit() local551 if ((error = copyin(uap->rlp, &olim, sizeof(struct orlimit)))) in osetrlimit()553 lim.rlim_cur = olim.rlim_cur; in osetrlimit()554 lim.rlim_max = olim.rlim_max; in osetrlimit()568 struct orlimit olim; in ogetrlimit() local585 olim.rlim_cur = rl.rlim_cur > 0x7fffffff ? 0x7fffffff : rl.rlim_cur; in ogetrlimit()586 olim.rlim_max = rl.rlim_max > 0x7fffffff ? 0x7fffffff : rl.rlim_max; in ogetrlimit()587 error = copyout(&olim, uap->rlp, sizeof(olim)); in ogetrlimit()