Home
last modified time | relevance | path

Searched refs:olim (Results 1 – 1 of 1) sorted by relevance

/f-stack/freebsd/kern/
H A Dkern_resource.c549 struct orlimit olim; in osetrlimit() local
553 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() local
587 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()