diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-08-29 18:46:36 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-08-29 18:46:36 +0000 |
commit | 9cb6bc936df5ccc6eb1a4ffb26d4cf5e73a61706 (patch) | |
tree | 438c5240cc42a6092474e872c264bab46ae74c9b /sys/compat/svr4/svr4_syscallargs.h | |
parent | 2de67afd31776b3a20dea753edfbff93aed5b8cf (diff) |
pread(2) / pwrite(2), regen
Diffstat (limited to 'sys/compat/svr4/svr4_syscallargs.h')
-rw-r--r-- | sys/compat/svr4/svr4_syscallargs.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/sys/compat/svr4/svr4_syscallargs.h b/sys/compat/svr4/svr4_syscallargs.h index ffb2eab06f5..3e7e9f0ecf7 100644 --- a/sys/compat/svr4/svr4_syscallargs.h +++ b/sys/compat/svr4/svr4_syscallargs.h @@ -2,7 +2,7 @@ * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.12 1997/03/28 22:03:49 kstailey Exp + * created from OpenBSD: syscalls.master,v 1.13 1997/08/29 18:45:52 kstailey Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -319,6 +319,20 @@ struct svr4_sys_gettimeofday_args { syscallarg(struct timeval *) tp; }; +struct svr4_sys_pread_args { + syscallarg(int) fd; + syscallarg(void *) buf; + syscallarg(size_t) nbyte; + syscallarg(svr4_off_t) off; +}; + +struct svr4_sys_pwrite_args { + syscallarg(int) fd; + syscallarg(const void *) buf; + syscallarg(size_t) nbyte; + syscallarg(svr4_off_t) off; +}; + struct svr4_sys_acl_args { syscallarg(char *) path; syscallarg(int) cmd; @@ -454,6 +468,8 @@ int svr4_sys_vhangup __P((struct proc *, void *, register_t *)); int svr4_sys_gettimeofday __P((struct proc *, void *, register_t *)); int sys_getitimer __P((struct proc *, void *, register_t *)); int sys_setitimer __P((struct proc *, void *, register_t *)); +int svr4_sys_pread __P((struct proc *, void *, register_t *)); +int svr4_sys_pwrite __P((struct proc *, void *, register_t *)); int svr4_sys_acl __P((struct proc *, void *, register_t *)); int svr4_sys_facl __P((struct proc *, void *, register_t *)); int compat_43_sys_setreuid __P((struct proc *, void *, register_t *)); |