Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/kern/
HDkern_resource.c550 struct orlimit olim; in osetrlimit() local
554 if ((error = copyin(uap->rlp, &olim, sizeof(struct orlimit)))) in osetrlimit()
556 lim.rlim_cur = olim.rlim_cur; in osetrlimit()
557 lim.rlim_max = olim.rlim_max; in osetrlimit()
571 struct orlimit olim; in ogetrlimit() local
588 olim.rlim_cur = rl.rlim_cur > 0x7fffffff ? 0x7fffffff : rl.rlim_cur; in ogetrlimit()
589 olim.rlim_max = rl.rlim_max > 0x7fffffff ? 0x7fffffff : rl.rlim_max; in ogetrlimit()
590 error = copyout(&olim, uap->rlp, sizeof(olim)); in ogetrlimit()