summaryrefslogtreecommitdiffstats
path: root/sys/compat/svr4/svr4_resource.c
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-12-14 01:56:26 +0000
committeralfred <alfred@FreeBSD.org>2002-12-14 01:56:26 +0000
commitd070c0a52d25d76fe9298c4217dc07e9439decca (patch)
treef2f1c63d7a3acfeb3493534ac55908632c5769ee /sys/compat/svr4/svr4_resource.c
parent069ffa44b51ac78013fd8505fb1faf6c57b4bb12 (diff)
downloadFreeBSD-src-d070c0a52d25d76fe9298c4217dc07e9439decca.zip
FreeBSD-src-d070c0a52d25d76fe9298c4217dc07e9439decca.tar.gz
SCARGS removal take II.
Diffstat (limited to 'sys/compat/svr4/svr4_resource.c')
-rw-r--r--sys/compat/svr4/svr4_resource.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/compat/svr4/svr4_resource.c b/sys/compat/svr4/svr4_resource.c
index 2d7a0ea..e9adace 100644
--- a/sys/compat/svr4/svr4_resource.c
+++ b/sys/compat/svr4/svr4_resource.c
@@ -133,7 +133,7 @@ svr4_sys_getrlimit(td, uap)
register struct thread *td;
struct svr4_sys_getrlimit_args *uap;
{
- int rl = svr4_to_native_rl(SCARG(uap, which));
+ int rl = svr4_to_native_rl(uap->which);
struct rlimit blim;
struct svr4_rlimit slim;
@@ -171,7 +171,7 @@ svr4_sys_getrlimit(td, uap)
else
slim.rlim_cur = SVR4_RLIM_SAVED_CUR;
- return copyout(&slim, SCARG(uap, rlp), sizeof(*SCARG(uap, rlp)));
+ return copyout(&slim, uap->rlp, sizeof(*uap->rlp));
}
@@ -180,7 +180,7 @@ svr4_sys_setrlimit(td, uap)
register struct thread *td;
struct svr4_sys_setrlimit_args *uap;
{
- int rl = svr4_to_native_rl(SCARG(uap, which));
+ int rl = svr4_to_native_rl(uap->which);
struct rlimit blim, *limp;
struct svr4_rlimit slim;
int error;
@@ -192,7 +192,7 @@ svr4_sys_setrlimit(td, uap)
mtx_assert(&Giant, MA_OWNED);
limp = &td->td_proc->p_rlimit[rl];
- if ((error = copyin(SCARG(uap, rlp), &slim, sizeof(slim))) != 0)
+ if ((error = copyin(uap->rlp, &slim, sizeof(slim))) != 0)
return error;
/*
@@ -231,7 +231,7 @@ svr4_sys_getrlimit64(td, uap)
register struct thread *td;
struct svr4_sys_getrlimit64_args *uap;
{
- int rl = svr4_to_native_rl(SCARG(uap, which));
+ int rl = svr4_to_native_rl(uap->which);
struct rlimit blim;
struct svr4_rlimit64 slim;
@@ -269,7 +269,7 @@ svr4_sys_getrlimit64(td, uap)
else
slim.rlim_cur = SVR4_RLIM64_SAVED_CUR;
- return copyout(&slim, SCARG(uap, rlp), sizeof(*SCARG(uap, rlp)));
+ return copyout(&slim, uap->rlp, sizeof(*uap->rlp));
}
@@ -278,7 +278,7 @@ svr4_sys_setrlimit64(td, uap)
register struct thread *td;
struct svr4_sys_setrlimit64_args *uap;
{
- int rl = svr4_to_native_rl(SCARG(uap, which));
+ int rl = svr4_to_native_rl(uap->which);
struct rlimit blim, *limp;
struct svr4_rlimit64 slim;
int error;
@@ -290,7 +290,7 @@ svr4_sys_setrlimit64(td, uap)
mtx_assert(&Giant, MA_OWNED);
limp = &td->td_proc->p_rlimit[rl];
- if ((error = copyin(SCARG(uap, rlp), &slim, sizeof(slim))) != 0)
+ if ((error = copyin(uap->rlp, &slim, sizeof(slim))) != 0)
return error;
/*
OpenPOWER on IntegriCloud