summaryrefslogtreecommitdiff
path: root/sys/compat
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/ibcs2/ibcs2_syscall.h2
-rw-r--r--sys/compat/ibcs2/ibcs2_syscallargs.h8
-rw-r--r--sys/compat/ibcs2/ibcs2_syscalls.c2
-rw-r--r--sys/compat/ibcs2/ibcs2_sysent.c2
-rw-r--r--sys/compat/sunos/sunos_syscall.h2
-rw-r--r--sys/compat/sunos/sunos_syscallargs.h8
-rw-r--r--sys/compat/sunos/sunos_syscalls.c2
-rw-r--r--sys/compat/sunos/sunos_sysent.c2
-rw-r--r--sys/compat/svr4/svr4_syscall.h2
-rw-r--r--sys/compat/svr4/svr4_syscallargs.h8
-rw-r--r--sys/compat/svr4/svr4_syscalls.c2
-rw-r--r--sys/compat/svr4/svr4_sysent.c2
12 files changed, 12 insertions, 30 deletions
diff --git a/sys/compat/ibcs2/ibcs2_syscall.h b/sys/compat/ibcs2/ibcs2_syscall.h
index 9af275d3da5..a6026714475 100644
--- a/sys/compat/ibcs2/ibcs2_syscall.h
+++ b/sys/compat/ibcs2/ibcs2_syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.5 1996/08/02 21:55:17 niklas Exp
*/
#define IBCS2_SYS_syscall 0
diff --git a/sys/compat/ibcs2/ibcs2_syscallargs.h b/sys/compat/ibcs2/ibcs2_syscallargs.h
index 09d99d19ccc..a704ee2a6e4 100644
--- a/sys/compat/ibcs2/ibcs2_syscallargs.h
+++ b/sys/compat/ibcs2/ibcs2_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.4 1996/08/02 20:20:28 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.5 1996/08/02 21:55:17 niklas Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -255,12 +255,6 @@ struct ibcs2_sys_putmsg_args {
syscallarg(int) flags;
};
-struct sys_poll_args {
- syscallarg(struct pollfd *) fds;
- syscallarg(unsigned long) nfds;
- syscallarg(int) timeout;
-};
-
struct ibcs2_sys_symlink_args {
syscallarg(char *) path;
syscallarg(char *) link;
diff --git a/sys/compat/ibcs2/ibcs2_syscalls.c b/sys/compat/ibcs2/ibcs2_syscalls.c
index 8e713625ed7..9f6ed193239 100644
--- a/sys/compat/ibcs2/ibcs2_syscalls.c
+++ b/sys/compat/ibcs2/ibcs2_syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.5 1996/08/02 21:55:17 niklas Exp
*/
char *ibcs2_syscallnames[] = {
diff --git a/sys/compat/ibcs2/ibcs2_sysent.c b/sys/compat/ibcs2/ibcs2_sysent.c
index f82f9e43fb0..3dc93315898 100644
--- a/sys/compat/ibcs2/ibcs2_sysent.c
+++ b/sys/compat/ibcs2/ibcs2_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.5 1996/08/02 21:55:17 niklas Exp
*/
#include <sys/param.h>
diff --git a/sys/compat/sunos/sunos_syscall.h b/sys/compat/sunos/sunos_syscall.h
index 3d9eee472af..e970f2397b2 100644
--- a/sys/compat/sunos/sunos_syscall.h
+++ b/sys/compat/sunos/sunos_syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.3 1996/08/02 20:20:31 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 21:55:22 niklas Exp
*/
#define SUNOS_SYS_syscall 0
diff --git a/sys/compat/sunos/sunos_syscallargs.h b/sys/compat/sunos/sunos_syscallargs.h
index 15112837fdd..3f3c08be44c 100644
--- a/sys/compat/sunos/sunos_syscallargs.h
+++ b/sys/compat/sunos/sunos_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.3 1996/08/02 20:20:31 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 21:55:22 niklas Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -131,12 +131,6 @@ struct sunos_sys_setrlimit_args {
syscallarg(struct orlimit *) rlp;
};
-struct sys_poll_args {
- syscallarg(struct pollfd *) fds;
- syscallarg(unsigned long) nfds;
- syscallarg(int) timeout;
-};
-
struct sunos_sys_nfssvc_args {
syscallarg(int) fd;
};
diff --git a/sys/compat/sunos/sunos_syscalls.c b/sys/compat/sunos/sunos_syscalls.c
index f829aa90142..f618da639f4 100644
--- a/sys/compat/sunos/sunos_syscalls.c
+++ b/sys/compat/sunos/sunos_syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.3 1996/08/02 20:20:31 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 21:55:22 niklas Exp
*/
char *sunos_syscallnames[] = {
diff --git a/sys/compat/sunos/sunos_sysent.c b/sys/compat/sunos/sunos_sysent.c
index 64d42024db1..10475f699c0 100644
--- a/sys/compat/sunos/sunos_sysent.c
+++ b/sys/compat/sunos/sunos_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.3 1996/08/02 20:20:31 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 21:55:22 niklas Exp
*/
#include <sys/param.h>
diff --git a/sys/compat/svr4/svr4_syscall.h b/sys/compat/svr4/svr4_syscall.h
index 0c134cf3c9e..0e239f3bcc8 100644
--- a/sys/compat/svr4/svr4_syscall.h
+++ b/sys/compat/svr4/svr4_syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.7 1996/08/02 20:20:33 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.8 1996/08/02 21:55:24 niklas Exp
*/
#define SVR4_SYS_syscall 0
diff --git a/sys/compat/svr4/svr4_syscallargs.h b/sys/compat/svr4/svr4_syscallargs.h
index dfd7ca18e1a..1a7e60ee543 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.7 1996/08/02 20:20:33 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.8 1996/08/02 21:55:24 niklas Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -163,12 +163,6 @@ struct svr4_sys_putmsg_args {
syscallarg(int) flags;
};
-struct sys_poll_args {
- syscallarg(struct pollfd *) fds;
- syscallarg(unsigned long) nfds;
- syscallarg(int) timeout;
-};
-
struct svr4_sys_lstat_args {
syscallarg(char *) path;
syscallarg(struct svr4_stat *) ub;
diff --git a/sys/compat/svr4/svr4_syscalls.c b/sys/compat/svr4/svr4_syscalls.c
index 785ba596759..b90c9fae92e 100644
--- a/sys/compat/svr4/svr4_syscalls.c
+++ b/sys/compat/svr4/svr4_syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.7 1996/08/02 20:20:33 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.8 1996/08/02 21:55:24 niklas Exp
*/
char *svr4_syscallnames[] = {
diff --git a/sys/compat/svr4/svr4_sysent.c b/sys/compat/svr4/svr4_sysent.c
index 7f7a6eced41..6ac4d87c146 100644
--- a/sys/compat/svr4/svr4_sysent.c
+++ b/sys/compat/svr4/svr4_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.7 1996/08/02 20:20:33 niklas Exp
+ * created from OpenBSD: syscalls.master,v 1.8 1996/08/02 21:55:24 niklas Exp
*/
#include <sys/param.h>