diff options
author | etheisen <etheisen@cvs.openbsd.org> | 1996-04-28 07:53:19 +0000 |
---|---|---|
committer | etheisen <etheisen@cvs.openbsd.org> | 1996-04-28 07:53:19 +0000 |
commit | 03b1eabf4deb45733b1212d30d83794e16c8c28c (patch) | |
tree | d5e5dbebe65ee5521879a8dbd6091e8fa57de966 /sys/compat/linux/linux_syscallargs.h | |
parent | 7758691178f1b7097bb880597f6c0f6041891b9e (diff) |
Reran makesyscalls.sh for addition of Linux dummy mount/umount() syscalls.
Fixed OpenBSD tag damage during previous checkin.
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 20151068e39..ce7ad96116a 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_syscallargs.h @@ -1,9 +1,8 @@ -/* $OpenBSD: linux_syscallargs.h,v 1.4 1996/04/17 05:24:06 mickey Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp + * created from OpenBSD: syscalls.master,v 1.5 1996/04/28 07:38:24 etheisen Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -64,6 +63,18 @@ struct linux_sys_break_args { syscallarg(char *) nsize; }; +struct linux_sys_mount_args { + syscallarg(char *) specialfile; + syscallarg(char *) dir; + syscallarg(char *) filesystemtype; + syscallarg(long) rwflag; + syscallarg(void *) data; +}; + +struct linux_sys_umount_args { + syscallarg(char *) specialfile; +}; + struct linux_sys_alarm_args { syscallarg(unsigned int) secs; }; @@ -339,6 +350,8 @@ int linux_sys_chown __P((struct proc *, void *, register_t *)); int linux_sys_break __P((struct proc *, void *, register_t *)); int compat_43_sys_lseek __P((struct proc *, void *, register_t *)); int sys_getpid __P((struct proc *, void *, register_t *)); +int linux_sys_mount __P((struct proc *, void *, register_t *)); +int linux_sys_umount __P((struct proc *, void *, register_t *)); int sys_setuid __P((struct proc *, void *, register_t *)); int sys_getuid __P((struct proc *, void *, register_t *)); int linux_sys_alarm __P((struct proc *, void *, register_t *)); |