Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern wrap long lines. no functional changes.



details:   https://anonhg.NetBSD.org/src/rev/8f5ca0a197b7
branches:  trunk
changeset: 748082:8f5ca0a197b7
user:      yamt <yamt%NetBSD.org@localhost>
date:      Mon Oct 12 23:38:08 2009 +0000

description:
wrap long lines.  no functional changes.

diffstat:

 sys/kern/sys_aio.c |  25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diffs (88 lines):

diff -r 0ad8637aaebb -r 8f5ca0a197b7 sys/kern/sys_aio.c
--- a/sys/kern/sys_aio.c        Mon Oct 12 23:36:56 2009 +0000
+++ b/sys/kern/sys_aio.c        Mon Oct 12 23:38:08 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sys_aio.c,v 1.26 2009/10/12 23:36:56 yamt Exp $        */
+/*     $NetBSD: sys_aio.c,v 1.27 2009/10/12 23:38:08 yamt Exp $        */
 
 /*
  * Copyright (c) 2007, Mindaugas Rasiukevicius <rmind at NetBSD org>
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sys_aio.c,v 1.26 2009/10/12 23:36:56 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sys_aio.c,v 1.27 2009/10/12 23:38:08 yamt Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -609,7 +609,8 @@
  */
 
 int
-sys_aio_cancel(struct lwp *l, const struct sys_aio_cancel_args *uap, register_t *retval)
+sys_aio_cancel(struct lwp *l, const struct sys_aio_cancel_args *uap,
+    register_t *retval)
 {
        /* {
                syscallarg(int) fildes;
@@ -718,7 +719,8 @@
 }
 
 int
-sys_aio_error(struct lwp *l, const struct sys_aio_error_args *uap, register_t *retval)
+sys_aio_error(struct lwp *l, const struct sys_aio_error_args *uap,
+    register_t *retval)
 {
        /* {
                syscallarg(const struct aiocb *) aiocbp;
@@ -744,7 +746,8 @@
 }
 
 int
-sys_aio_fsync(struct lwp *l, const struct sys_aio_fsync_args *uap, register_t *retval)
+sys_aio_fsync(struct lwp *l, const struct sys_aio_fsync_args *uap,
+    register_t *retval)
 {
        /* {
                syscallarg(int) op;
@@ -761,7 +764,8 @@
 }
 
 int
-sys_aio_read(struct lwp *l, const struct sys_aio_read_args *uap, register_t *retval)
+sys_aio_read(struct lwp *l, const struct sys_aio_read_args *uap,
+    register_t *retval)
 {
        /* {
                syscallarg(struct aiocb *) aiocbp;
@@ -771,7 +775,8 @@
 }
 
 int
-sys_aio_return(struct lwp *l, const struct sys_aio_return_args *uap, register_t *retval)
+sys_aio_return(struct lwp *l, const struct sys_aio_return_args *uap,
+    register_t *retval)
 {
        /* {
                syscallarg(struct aiocb *) aiocbp;
@@ -909,7 +914,8 @@
 }
 
 int
-sys_aio_write(struct lwp *l, const struct sys_aio_write_args *uap, register_t *retval)
+sys_aio_write(struct lwp *l, const struct sys_aio_write_args *uap,
+    register_t *retval)
 {
        /* {
                syscallarg(struct aiocb *) aiocbp;
@@ -919,7 +925,8 @@
 }
 
 int
-sys_lio_listio(struct lwp *l, const struct sys_lio_listio_args *uap, register_t *retval)
+sys_lio_listio(struct lwp *l, const struct sys_lio_listio_args *uap,
+    register_t *retval)
 {
        /* {
                syscallarg(int) mode;



Home | Main Index | Thread Index | Old Index