From 016301ced5188a8981da9b4345312595b4d76f35 Mon Sep 17 00:00:00 2001 From: jasoni Date: Wed, 8 Mar 2000 03:36:22 +0000 Subject: [PATCH] sync --- sys/compat/linux/linux_syscall.h | 12 ++++++------ sys/compat/linux/linux_syscallargs.h | 16 ++++++++-------- sys/compat/linux/linux_syscalls.c | 4 ++-- sys/compat/linux/linux_sysent.c | 4 ++-- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index 9fc28555ca8..7fc86bba10c 100644 --- a/sys/compat/linux/linux_syscall.h +++ b/sys/compat/linux/linux_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscall.h,v 1.14 2000/02/28 13:30:52 jasoni Exp $ */ +/* $OpenBSD: linux_syscall.h,v 1.15 2000/03/08 03:36:22 jasoni Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.15 2000/02/28 13:29:30 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.16 2000/03/08 03:35:29 jasoni Exp */ /* syscall: "syscall" ret: "int" args: */ @@ -174,13 +174,13 @@ /* syscall: "setsid" ret: "int" args: */ #define LINUX_SYS_setsid 66 -/* syscall: "sigaction" ret: "int" args: "int" "struct linux_sigaction *" "struct linux_sigaction *" */ +/* syscall: "sigaction" ret: "int" args: "int" "struct linux_old_sigaction *" "struct linux_old_sigaction *" */ #define LINUX_SYS_sigaction 67 /* syscall: "siggetmask" ret: "int" args: */ #define LINUX_SYS_siggetmask 68 -/* syscall: "sigsetmask" ret: "int" args: "linux_sigset_t" */ +/* syscall: "sigsetmask" ret: "int" args: "linux_old_sigset_t" */ #define LINUX_SYS_sigsetmask 69 /* syscall: "setreuid" ret: "int" args: "int" "int" */ @@ -192,7 +192,7 @@ /* syscall: "sigsuspend" ret: "int" args: "caddr_t" "int" "int" */ #define LINUX_SYS_sigsuspend 72 -/* syscall: "sigpending" ret: "int" args: "linux_sigset_t *" */ +/* syscall: "sigpending" ret: "int" args: "linux_old_sigset_t *" */ #define LINUX_SYS_sigpending 73 /* syscall: "sethostname" ret: "int" args: "char *" "u_int" */ @@ -327,7 +327,7 @@ /* syscall: "mprotect" ret: "int" args: "caddr_t" "int" "int" */ #define LINUX_SYS_mprotect 125 -/* syscall: "sigprocmask" ret: "int" args: "int" "linux_sigset_t *" "linux_sigset_t *" */ +/* syscall: "sigprocmask" ret: "int" args: "int" "linux_old_sigset_t *" "linux_old_sigset_t *" */ #define LINUX_SYS_sigprocmask 126 /* syscall: "getpgid" ret: "int" args: "int" */ diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 7c53dd2eace..0fc99fc81a5 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscallargs.h,v 1.15 2000/02/28 13:30:52 jasoni Exp $ */ +/* $OpenBSD: linux_syscallargs.h,v 1.16 2000/03/08 03:36:22 jasoni Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.15 2000/02/28 13:29:30 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.16 2000/03/08 03:35:29 jasoni Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -153,12 +153,12 @@ struct linux_sys_oldolduname_args { struct linux_sys_sigaction_args { syscallarg(int) signum; - syscallarg(struct linux_sigaction *) nsa; - syscallarg(struct linux_sigaction *) osa; + syscallarg(struct linux_old_sigaction *) nsa; + syscallarg(struct linux_old_sigaction *) osa; }; struct linux_sys_sigsetmask_args { - syscallarg(linux_sigset_t) mask; + syscallarg(linux_old_sigset_t) mask; }; struct linux_sys_setreuid_args { @@ -178,7 +178,7 @@ struct linux_sys_sigsuspend_args { }; struct linux_sys_sigpending_args { - syscallarg(linux_sigset_t *) mask; + syscallarg(linux_old_sigset_t *) mask; }; struct linux_sys_oldselect_args { @@ -296,8 +296,8 @@ struct linux_sys_modify_ldt_args { struct linux_sys_sigprocmask_args { syscallarg(int) how; - syscallarg(linux_sigset_t *) set; - syscallarg(linux_sigset_t *) oset; + syscallarg(linux_old_sigset_t *) set; + syscallarg(linux_old_sigset_t *) oset; }; struct linux_sys_getpgid_args { diff --git a/sys/compat/linux/linux_syscalls.c b/sys/compat/linux/linux_syscalls.c index 6859fb1c996..20e3f108b6e 100644 --- a/sys/compat/linux/linux_syscalls.c +++ b/sys/compat/linux/linux_syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscalls.c,v 1.14 2000/02/28 13:30:52 jasoni Exp $ */ +/* $OpenBSD: linux_syscalls.c,v 1.15 2000/03/08 03:36:22 jasoni Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.15 2000/02/28 13:29:30 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.16 2000/03/08 03:35:29 jasoni Exp */ char *linux_syscallnames[] = { diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c index af6420683b2..7a5142bcb53 100644 --- a/sys/compat/linux/linux_sysent.c +++ b/sys/compat/linux/linux_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_sysent.c,v 1.15 2000/02/28 13:30:52 jasoni Exp $ */ +/* $OpenBSD: linux_sysent.c,v 1.16 2000/03/08 03:36:22 jasoni Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.15 2000/02/28 13:29:30 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.16 2000/03/08 03:35:29 jasoni Exp */ #include -- 2.20.1