Module Name: src Committed By: yamt Date: Sat May 30 04:26:16 UTC 2009
Modified Files: src/sys/uvm: uvm_mmap.c Log Message: wrap long lines. To generate a diff of this commit: cvs rdiff -u -r1.128 -r1.129 src/sys/uvm/uvm_mmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/uvm/uvm_mmap.c diff -u src/sys/uvm/uvm_mmap.c:1.128 src/sys/uvm/uvm_mmap.c:1.129 --- src/sys/uvm/uvm_mmap.c:1.128 Sun Mar 29 01:02:51 2009 +++ src/sys/uvm/uvm_mmap.c Sat May 30 04:26:16 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_mmap.c,v 1.128 2009/03/29 01:02:51 mrg Exp $ */ +/* $NetBSD: uvm_mmap.c,v 1.129 2009/05/30 04:26:16 yamt Exp $ */ /* * Copyright (c) 1997 Charles D. Cranor and Washington University. @@ -51,7 +51,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uvm_mmap.c,v 1.128 2009/03/29 01:02:51 mrg Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uvm_mmap.c,v 1.129 2009/05/30 04:26:16 yamt Exp $"); #include "opt_compat_netbsd.h" #include "opt_pax.h" @@ -145,7 +145,8 @@ /* ARGSUSED */ int -sys_mincore(struct lwp *l, const struct sys_mincore_args *uap, register_t *retval) +sys_mincore(struct lwp *l, const struct sys_mincore_args *uap, + register_t *retval) { /* { syscallarg(void *) addr; @@ -562,7 +563,8 @@ */ int -sys___msync13(struct lwp *l, const struct sys___msync13_args *uap, register_t *retval) +sys___msync13(struct lwp *l, const struct sys___msync13_args *uap, + register_t *retval) { /* { syscallarg(void *) addr; @@ -716,7 +718,8 @@ */ int -sys_mprotect(struct lwp *l, const struct sys_mprotect_args *uap, register_t *retval) +sys_mprotect(struct lwp *l, const struct sys_mprotect_args *uap, + register_t *retval) { /* { syscallarg(void *) addr; @@ -760,7 +763,8 @@ */ int -sys_minherit(struct lwp *l, const struct sys_minherit_args *uap, register_t *retval) +sys_minherit(struct lwp *l, const struct sys_minherit_args *uap, + register_t *retval) { /* { syscallarg(void *) addr; @@ -801,7 +805,8 @@ /* ARGSUSED */ int -sys_madvise(struct lwp *l, const struct sys_madvise_args *uap, register_t *retval) +sys_madvise(struct lwp *l, const struct sys_madvise_args *uap, + register_t *retval) { /* { syscallarg(void *) addr; @@ -953,7 +958,8 @@ */ int -sys_munlock(struct lwp *l, const struct sys_munlock_args *uap, register_t *retval) +sys_munlock(struct lwp *l, const struct sys_munlock_args *uap, + register_t *retval) { /* { syscallarg(const void *) addr; @@ -996,7 +1002,8 @@ */ int -sys_mlockall(struct lwp *l, const struct sys_mlockall_args *uap, register_t *retval) +sys_mlockall(struct lwp *l, const struct sys_mlockall_args *uap, + register_t *retval) { /* { syscallarg(int) flags; @@ -1037,7 +1044,8 @@ */ int -uvm_mmap(struct vm_map *map, vaddr_t *addr, vsize_t size, vm_prot_t prot, vm_prot_t maxprot, int flags, void *handle, voff_t foff, vsize_t locklimit) +uvm_mmap(struct vm_map *map, vaddr_t *addr, vsize_t size, vm_prot_t prot, + vm_prot_t maxprot, int flags, void *handle, voff_t foff, vsize_t locklimit) { struct uvm_object *uobj; struct vnode *vp;