summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-05-13 02:40:47 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-05-13 02:40:47 +0000
commit5e3c1b93d4c3faa0d4bc0fceae96df76a7d39519 (patch)
tree2e8bc3279341ef03c850bd0e56471b192228f877
parent0703ff606a414920f3d89d3bb9ad685aaed9ca0f (diff)
Add pad argument for p{read,write}v? to the syscall args comment for
consistency with syscallargs.h as well as sys_lseek.
-rw-r--r--sys/kern/vfs_syscalls.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c
index 64c9cbd11b2..8f07631a6f6 100644
--- a/sys/kern/vfs_syscalls.c
+++ b/sys/kern/vfs_syscalls.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_syscalls.c,v 1.70 2001/04/04 20:19:02 gluk Exp $ */
+/* $OpenBSD: vfs_syscalls.c,v 1.71 2001/05/13 02:40:46 millert Exp $ */
/* $NetBSD: vfs_syscalls.c,v 1.71 1996/04/23 10:29:02 mycroft Exp $ */
/*
@@ -2819,6 +2819,7 @@ sys_pread(p, v, retval)
syscallarg(int) fd;
syscallarg(void *) buf;
syscallarg(size_t) nbyte;
+ syscallarg(int) pad;
syscallarg(off_t) offset;
} */ *uap = v;
struct filedesc *fdp = p->p_fd;
@@ -2871,6 +2872,7 @@ sys_preadv(p, v, retval)
syscallarg(int) fd;
syscallarg(const struct iovec *) iovp;
syscallarg(int) iovcnt;
+ syscallarg(int) pad;
syscallarg(off_t) offset;
} */ *uap = v;
struct filedesc *fdp = p->p_fd;
@@ -2923,6 +2925,7 @@ sys_pwrite(p, v, retval)
syscallarg(int) fd;
syscallarg(const void *) buf;
syscallarg(size_t) nbyte;
+ syscallarg(int) pad;
syscallarg(off_t) offset;
} */ *uap = v;
struct filedesc *fdp = p->p_fd;
@@ -2976,6 +2979,7 @@ sys_pwritev(p, v, retval)
syscallarg(int) fd;
syscallarg(const struct iovec *) iovp;
syscallarg(int) iovcnt;
+ syscallarg(int) pad;
syscallarg(off_t) offset;
} */ *uap = v;
struct filedesc *fdp = p->p_fd;