Module Name:    src
Committed By:   yamt
Date:           Mon Oct 12 23:38:08 UTC 2009

Modified Files:
        src/sys/kern: sys_aio.c

Log Message:
wrap long lines.  no functional changes.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/sys/kern/sys_aio.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/kern/sys_aio.c
diff -u src/sys/kern/sys_aio.c:1.26 src/sys/kern/sys_aio.c:1.27
--- src/sys/kern/sys_aio.c:1.26	Mon Oct 12 23:36:56 2009
+++ src/sys/kern/sys_aio.c	Mon Oct 12 23:38:08 2009
@@ -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;

Reply via email to