Index: sys/vm/vm_glue.c =================================================================== --- sus/vm/vm_glue.c (revision 325498) +++ sus/vm/vm_glue.c (working copy) @@ -111,9 +111,7 @@ * space. */ int -kernacc(addr, len, rw) - void *addr; - int len, rw; +kernacc(void *addr, int len, int rw) { boolean_t rv; vm_offset_t saddr, eaddr; @@ -145,9 +143,7 @@ * used in conjunction with this call. */ int -useracc(addr, len, rw) - void *addr; - int len, rw; +useracc(void *addr, int len, int rw) { boolean_t rv; vm_prot_t prot; @@ -525,12 +521,8 @@ * to user mode to avoid stack copying and relocation problems. */ int -vm_forkproc(td, p2, td2, vm2, flags) - struct thread *td; - struct proc *p2; - struct thread *td2; - struct vmspace *vm2; - int flags; +vm_forkproc(struct thread *td, struct proc *p2, struct thread *td2, + struct vmspace *vm2, int flags) { struct proc *p1 = td->td_proc; int error; @@ -581,8 +573,7 @@ * the process was still executing. */ void -vm_waitproc(p) - struct proc *p; +vm_waitproc(struct proc *p) {