aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_resource.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-06-29 02:00:02 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-06-29 02:00:02 +0000
commit016091145e2cabc9f30bffc9e3f850e0b5d7c837 (patch)
treed16723d40cb39c9fa11d51111834190de4a5c67d /sys/kern/kern_resource.c
parentf32932bc1b4e3bebddbb5b796225e4431df0ad19 (diff)
downloadsrc-016091145e2cabc9f30bffc9e3f850e0b5d7c837.tar.gz
src-016091145e2cabc9f30bffc9e3f850e0b5d7c837.zip
more caddr_t removal.
Notes
Notes: svn path=/head/; revision=99012
Diffstat (limited to 'sys/kern/kern_resource.c')
-rw-r--r--sys/kern/kern_resource.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/sys/kern/kern_resource.c b/sys/kern/kern_resource.c
index d467c1ad30b3..e8dad579036e 100644
--- a/sys/kern/kern_resource.c
+++ b/sys/kern/kern_resource.c
@@ -426,8 +426,7 @@ osetrlimit(td, uap)
struct rlimit lim;
int error;
- if ((error =
- copyin((caddr_t)uap->rlp, (caddr_t)&olim, sizeof(struct orlimit))))
+ if ((error = copyin(uap->rlp, &olim, sizeof(struct orlimit))))
return (error);
lim.rlim_cur = olim.rlim_cur;
lim.rlim_max = olim.rlim_max;
@@ -465,7 +464,7 @@ ogetrlimit(td, uap)
olim.rlim_max = p->p_rlimit[uap->which].rlim_max;
if (olim.rlim_max == -1)
olim.rlim_max = 0x7fffffff;
- error = copyout((caddr_t)&olim, (caddr_t)uap->rlp, sizeof(olim));
+ error = copyout(&olim, uap->rlp, sizeof(olim));
mtx_unlock(&Giant);
return (error);
}
@@ -489,8 +488,7 @@ setrlimit(td, uap)
struct rlimit alim;
int error;
- if ((error =
- copyin((caddr_t)uap->rlp, (caddr_t)&alim, sizeof (struct rlimit))))
+ if ((error = copyin(uap->rlp, &alim, sizeof (struct rlimit))))
return (error);
mtx_lock(&Giant);
error = dosetrlimit(td, uap->which, &alim);
@@ -625,7 +623,7 @@ getrlimit(td, uap)
if (uap->which >= RLIM_NLIMITS)
return (EINVAL);
mtx_lock(&Giant);
- error = copyout((caddr_t)&p->p_rlimit[uap->which], (caddr_t)uap->rlp,
+ error = copyout(&p->p_rlimit[uap->which], uap->rlp,
sizeof (struct rlimit));
mtx_unlock(&Giant);
return(error);
@@ -779,8 +777,7 @@ getrusage(td, uap)
}
mtx_unlock(&Giant);
if (error == 0) {
- error = copyout((caddr_t)rup, (caddr_t)uap->rusage,
- sizeof (struct rusage));
+ error = copyout(rup, uap->rusage, sizeof (struct rusage));
}
return(error);
}