Searched refs:olim (Results 1 – 1 of 1) sorted by relevance
549 struct orlimit olim; in osetrlimit() local553 if ((error = copyin(uap->rlp, &olim, sizeof(struct orlimit)))) in osetrlimit()555 lim.rlim_cur = olim.rlim_cur; in osetrlimit()556 lim.rlim_max = olim.rlim_max; in osetrlimit()570 struct orlimit olim; in ogetrlimit() local587 olim.rlim_cur = rl.rlim_cur > 0x7fffffff ? 0x7fffffff : rl.rlim_cur; in ogetrlimit()588 olim.rlim_max = rl.rlim_max > 0x7fffffff ? 0x7fffffff : rl.rlim_max; in ogetrlimit()589 error = copyout(&olim, uap->rlp, sizeof(olim)); in ogetrlimit()