diff options
author | phk <phk@FreeBSD.org> | 1997-11-06 19:29:57 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-11-06 19:29:57 +0000 |
commit | 4c8218a5c7d132b8ae0bd2a5a677455d69fabaab (patch) | |
tree | 70e3bdde81d385220c0b0de7410976c4e83e5bbd /sys/kern/kern_sysctl.c | |
parent | 363a7ddf8560aa6b11580adeb58853d719217b26 (diff) | |
download | FreeBSD-src-4c8218a5c7d132b8ae0bd2a5a677455d69fabaab.zip FreeBSD-src-4c8218a5c7d132b8ae0bd2a5a677455d69fabaab.tar.gz |
Move the "retval" (3rd) parameter from all syscall functions and put
it in struct proc instead.
This fixes a boatload of compiler warning, and removes a lot of cruft
from the sources.
I have not removed the /*ARGSUSED*/, they will require some looking at.
libkvm, ps and other userland struct proc frobbing programs will need
recompiled.
Diffstat (limited to 'sys/kern/kern_sysctl.c')
-rw-r--r-- | sys/kern/kern_sysctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c index 2b7bac3..f8b01d7 100644 --- a/sys/kern/kern_sysctl.c +++ b/sys/kern/kern_sysctl.c @@ -37,7 +37,7 @@ * SUCH DAMAGE. * * @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94 - * $Id: kern_sysctl.c,v 1.71 1997/10/11 18:31:24 phk Exp $ + * $Id: kern_sysctl.c,v 1.72 1997/10/12 20:23:56 phk Exp $ */ #include <sys/param.h> @@ -769,7 +769,7 @@ struct sysctl_args { #endif int -__sysctl(struct proc *p, struct sysctl_args *uap, int *retval) +__sysctl(struct proc *p, struct sysctl_args *uap) { int error, i, j, name[CTL_MAXNAME]; @@ -939,7 +939,7 @@ struct getkerninfo_args { #endif int -ogetkerninfo(struct proc *p, struct getkerninfo_args *uap, int *retval) +ogetkerninfo(struct proc *p, struct getkerninfo_args *uap) { int error, name[6]; u_int size; @@ -1070,7 +1070,7 @@ ogetkerninfo(struct proc *p, struct getkerninfo_args *uap, int *retval) } if (error) return (error); - *retval = size; + p->p_retval[0] = size; if (uap->size) error = copyout((caddr_t)&size, (caddr_t)uap->size, sizeof(size)); |