summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2004-01-14 05:26:57 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2004-01-14 05:26:57 +0000
commitbf66a4f83201fdc39f148984d7a2133f3eb1b339 (patch)
treee6598bd9ee11c94f2dd6ebcabaa6d8d8f42c4c4e /sys
parent436260b54e979e00a7a08dc4ff2cb00c6bf7ce21 (diff)
sync
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/bsdos/bsdos_syscall.h8
-rw-r--r--sys/compat/bsdos/bsdos_syscallargs.h6
-rw-r--r--sys/compat/bsdos/bsdos_syscalls.c6
-rw-r--r--sys/compat/bsdos/bsdos_sysent.c8
-rw-r--r--sys/compat/netbsd/netbsd_syscall.h12
-rw-r--r--sys/compat/netbsd/netbsd_syscallargs.h13
-rw-r--r--sys/compat/netbsd/netbsd_syscalls.c8
-rw-r--r--sys/compat/netbsd/netbsd_sysent.c12
8 files changed, 34 insertions, 39 deletions
diff --git a/sys/compat/bsdos/bsdos_syscall.h b/sys/compat/bsdos/bsdos_syscall.h
index 1cf06fb10cd..6f5e6b0187f 100644
--- a/sys/compat/bsdos/bsdos_syscall.h
+++ b/sys/compat/bsdos/bsdos_syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: bsdos_syscall.h,v 1.12 2003/05/10 17:55:53 miod Exp $ */
+/* $OpenBSD: bsdos_syscall.h,v 1.13 2004/01/14 05:26:56 tedu Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.11 2003/05/10 17:53:53 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.12 2004/01/14 05:23:25 tedu Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -164,8 +164,8 @@
/* syscall: "sigpending" ret: "int" args: */
#define BSDOS_SYS_sigpending 52
-/* syscall: "sigaltstack" ret: "int" args: "struct sigaltstack *" "struct sigaltstack *" */
-#define BSDOS_SYS_sigaltstack 53
+/* syscall: "osigaltstack" ret: "int" args: "struct osigaltstack *" "struct osigaltstack *" */
+#define BSDOS_SYS_osigaltstack 53
/* syscall: "ioctl" ret: "int" args: "int" "u_long" "caddr_t" */
#define BSDOS_SYS_ioctl 54
diff --git a/sys/compat/bsdos/bsdos_syscallargs.h b/sys/compat/bsdos/bsdos_syscallargs.h
index ad8b4a0e128..e0b22cbf576 100644
--- a/sys/compat/bsdos/bsdos_syscallargs.h
+++ b/sys/compat/bsdos/bsdos_syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: bsdos_syscallargs.h,v 1.13 2003/05/10 17:55:53 miod Exp $ */
+/* $OpenBSD: bsdos_syscallargs.h,v 1.14 2004/01/14 05:26:56 tedu Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.11 2003/05/10 17:53:53 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.12 2004/01/14 05:23:25 tedu Exp
*/
#ifdef syscallarg
@@ -91,7 +91,7 @@ int sys_getlogin(struct proc *, void *, register_t *);
int sys_setlogin(struct proc *, void *, register_t *);
int sys_acct(struct proc *, void *, register_t *);
int sys_sigpending(struct proc *, void *, register_t *);
-int sys_sigaltstack(struct proc *, void *, register_t *);
+int sys_osigaltstack(struct proc *, void *, register_t *);
int bsdos_sys_ioctl(struct proc *, void *, register_t *);
int sys_reboot(struct proc *, void *, register_t *);
int sys_revoke(struct proc *, void *, register_t *);
diff --git a/sys/compat/bsdos/bsdos_syscalls.c b/sys/compat/bsdos/bsdos_syscalls.c
index c40ccf151a0..7a901e0331c 100644
--- a/sys/compat/bsdos/bsdos_syscalls.c
+++ b/sys/compat/bsdos/bsdos_syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: bsdos_syscalls.c,v 1.12 2003/05/10 17:55:53 miod Exp $ */
+/* $OpenBSD: bsdos_syscalls.c,v 1.13 2004/01/14 05:26:56 tedu Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.11 2003/05/10 17:53:53 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.12 2004/01/14 05:23:25 tedu Exp
*/
char *bsdos_syscallnames[] = {
@@ -69,7 +69,7 @@ char *bsdos_syscallnames[] = {
"setlogin", /* 50 = setlogin */
"acct", /* 51 = acct */
"sigpending", /* 52 = sigpending */
- "sigaltstack", /* 53 = sigaltstack */
+ "osigaltstack", /* 53 = osigaltstack */
"ioctl", /* 54 = ioctl */
"reboot", /* 55 = reboot */
"revoke", /* 56 = revoke */
diff --git a/sys/compat/bsdos/bsdos_sysent.c b/sys/compat/bsdos/bsdos_sysent.c
index b28265bdfa2..2b38c306194 100644
--- a/sys/compat/bsdos/bsdos_sysent.c
+++ b/sys/compat/bsdos/bsdos_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: bsdos_sysent.c,v 1.12 2003/05/10 17:55:53 miod Exp $ */
+/* $OpenBSD: bsdos_sysent.c,v 1.13 2004/01/14 05:26:56 tedu Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.11 2003/05/10 17:53:53 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.12 2004/01/14 05:23:25 tedu Exp
*/
#include <sys/param.h>
@@ -133,8 +133,8 @@ struct sysent bsdos_sysent[] = {
sys_acct }, /* 51 = acct */
{ 0, 0,
sys_sigpending }, /* 52 = sigpending */
- { 2, s(struct sys_sigaltstack_args),
- sys_sigaltstack }, /* 53 = sigaltstack */
+ { 2, s(struct sys_osigaltstack_args),
+ sys_osigaltstack }, /* 53 = osigaltstack */
{ 3, s(struct bsdos_sys_ioctl_args),
bsdos_sys_ioctl }, /* 54 = ioctl */
{ 1, s(struct sys_reboot_args),
diff --git a/sys/compat/netbsd/netbsd_syscall.h b/sys/compat/netbsd/netbsd_syscall.h
index 2ea71f676a2..8cb5fda5d24 100644
--- a/sys/compat/netbsd/netbsd_syscall.h
+++ b/sys/compat/netbsd/netbsd_syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: netbsd_syscall.h,v 1.21 2003/05/11 19:45:43 deraadt Exp $ */
+/* $OpenBSD: netbsd_syscall.h,v 1.22 2004/01/14 05:26:56 tedu Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.20 2003/05/11 19:45:18 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.21 2004/01/14 05:23:25 tedu Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -164,8 +164,8 @@
/* syscall: "sigpending" ret: "int" args: */
#define NETBSD_SYS_sigpending 52
-/* syscall: "sigaltstack" ret: "int" args: "const struct sigaltstack *" "struct sigaltstack *" */
-#define NETBSD_SYS_sigaltstack 53
+/* syscall: "osigaltstack" ret: "int" args: "const struct osigaltstack *" "struct osigaltstack *" */
+#define NETBSD_SYS_osigaltstack 53
/* syscall: "ioctl" ret: "int" args: "int" "u_long" "..." */
#define NETBSD_SYS_ioctl 54
@@ -644,8 +644,8 @@
/* syscall: "__lstat13" ret: "int" args: "char *" "struct netbsd_stat *" */
#define NETBSD_SYS___lstat13 280
-/* syscall: "__sigaltstack14" ret: "int" args: "const struct netbsd_sigaltstack *" "struct netbsd_sigaltstack *" */
-#define NETBSD_SYS___sigaltstack14 281
+/* syscall: "sigaltstack" ret: "int" args: "const struct sigaltstack *" "struct sigaltstack *" */
+#define NETBSD_SYS_sigaltstack 281
/* syscall: "__vfork14" ret: "int" args: */
#define NETBSD_SYS___vfork14 282
diff --git a/sys/compat/netbsd/netbsd_syscallargs.h b/sys/compat/netbsd/netbsd_syscallargs.h
index 8eec100569b..e92df999ecd 100644
--- a/sys/compat/netbsd/netbsd_syscallargs.h
+++ b/sys/compat/netbsd/netbsd_syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: netbsd_syscallargs.h,v 1.22 2003/05/11 19:45:43 deraadt Exp $ */
+/* $OpenBSD: netbsd_syscallargs.h,v 1.23 2004/01/14 05:26:56 tedu Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.20 2003/05/11 19:45:18 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.21 2004/01/14 05:23:25 tedu Exp
*/
#ifdef syscallarg
@@ -194,11 +194,6 @@ struct netbsd_sys___lstat13_args {
syscallarg(struct netbsd_stat *) ub;
};
-struct netbsd_sys___sigaltstack14_args {
- syscallarg(const struct netbsd_sigaltstack *) nss;
- syscallarg(struct netbsd_sigaltstack *) oss;
-};
-
struct netbsd_sys___sigaction14_args {
syscallarg(int) signum;
syscallarg(const struct netbsd_sigaction *) nsa;
@@ -289,7 +284,7 @@ int sys_getlogin(struct proc *, void *, register_t *);
int sys_setlogin(struct proc *, void *, register_t *);
int sys_acct(struct proc *, void *, register_t *);
int sys_sigpending(struct proc *, void *, register_t *);
-int sys_sigaltstack(struct proc *, void *, register_t *);
+int sys_osigaltstack(struct proc *, void *, register_t *);
int sys_ioctl(struct proc *, void *, register_t *);
int sys_reboot(struct proc *, void *, register_t *);
int netbsd_sys_revoke(struct proc *, void *, register_t *);
@@ -493,7 +488,7 @@ int sys_msync(struct proc *, void *, register_t *);
int netbsd_sys___stat13(struct proc *, void *, register_t *);
int netbsd_sys___fstat13(struct proc *, void *, register_t *);
int netbsd_sys___lstat13(struct proc *, void *, register_t *);
-int netbsd_sys___sigaltstack14(struct proc *, void *, register_t *);
+int sys_sigaltstack(struct proc *, void *, register_t *);
int netbsd_sys___vfork14(struct proc *, void *, register_t *);
int sys_getsid(struct proc *, void *, register_t *);
#ifdef KTRACE
diff --git a/sys/compat/netbsd/netbsd_syscalls.c b/sys/compat/netbsd/netbsd_syscalls.c
index ec09daa174b..4e5f4d1301d 100644
--- a/sys/compat/netbsd/netbsd_syscalls.c
+++ b/sys/compat/netbsd/netbsd_syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: netbsd_syscalls.c,v 1.21 2003/05/11 19:45:43 deraadt Exp $ */
+/* $OpenBSD: netbsd_syscalls.c,v 1.22 2004/01/14 05:26:56 tedu Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.20 2003/05/11 19:45:18 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.21 2004/01/14 05:23:25 tedu Exp
*/
char *netbsd_syscallnames[] = {
@@ -69,7 +69,7 @@ char *netbsd_syscallnames[] = {
"setlogin", /* 50 = setlogin */
"acct", /* 51 = acct */
"sigpending", /* 52 = sigpending */
- "sigaltstack", /* 53 = sigaltstack */
+ "osigaltstack", /* 53 = osigaltstack */
"ioctl", /* 54 = ioctl */
"reboot", /* 55 = reboot */
"revoke", /* 56 = revoke */
@@ -370,7 +370,7 @@ char *netbsd_syscallnames[] = {
"__stat13", /* 278 = __stat13 */
"__fstat13", /* 279 = __fstat13 */
"__lstat13", /* 280 = __lstat13 */
- "__sigaltstack14", /* 281 = __sigaltstack14 */
+ "sigaltstack", /* 281 = sigaltstack */
"__vfork14", /* 282 = __vfork14 */
"#283 (unimplemented)", /* 283 = unimplemented */
"#284 (unimplemented)", /* 284 = unimplemented */
diff --git a/sys/compat/netbsd/netbsd_sysent.c b/sys/compat/netbsd/netbsd_sysent.c
index 6767a526fdb..b8aa37fec2b 100644
--- a/sys/compat/netbsd/netbsd_sysent.c
+++ b/sys/compat/netbsd/netbsd_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: netbsd_sysent.c,v 1.21 2003/05/11 19:45:43 deraadt Exp $ */
+/* $OpenBSD: netbsd_sysent.c,v 1.22 2004/01/14 05:26:56 tedu Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.20 2003/05/11 19:45:18 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.21 2004/01/14 05:23:25 tedu Exp
*/
#include <sys/param.h>
@@ -138,8 +138,8 @@ struct sysent netbsd_sysent[] = {
sys_acct }, /* 51 = acct */
{ 0, 0,
sys_sigpending }, /* 52 = sigpending */
- { 2, s(struct sys_sigaltstack_args),
- sys_sigaltstack }, /* 53 = sigaltstack */
+ { 2, s(struct sys_osigaltstack_args),
+ sys_osigaltstack }, /* 53 = osigaltstack */
{ 3, s(struct sys_ioctl_args),
sys_ioctl }, /* 54 = ioctl */
{ 1, s(struct sys_reboot_args),
@@ -701,8 +701,8 @@ struct sysent netbsd_sysent[] = {
netbsd_sys___fstat13 }, /* 279 = __fstat13 */
{ 2, s(struct netbsd_sys___lstat13_args),
netbsd_sys___lstat13 }, /* 280 = __lstat13 */
- { 2, s(struct netbsd_sys___sigaltstack14_args),
- netbsd_sys___sigaltstack14 }, /* 281 = __sigaltstack14 */
+ { 2, s(struct sys_sigaltstack_args),
+ sys_sigaltstack }, /* 281 = sigaltstack */
{ 0, 0,
netbsd_sys___vfork14 }, /* 282 = __vfork14 */
{ 0, 0,