summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/syscalls.c4
-rw-r--r--sys/sys/syscall.h6
-rw-r--r--sys/sys/syscallargs.h6
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index c9eaf3a3dba..e5aaf4df49e 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.70 2003/09/07 21:01:04 miod Exp $ */
+/* $OpenBSD: syscalls.c,v 1.71 2003/12/10 23:11:36 millert Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.62 2003/09/07 21:00:27 miod Exp
+ * created from; OpenBSD: syscalls.master,v 1.63 2003/12/10 23:10:08 millert Exp
*/
char *syscallnames[] = {
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 044a4a9899f..c88cb187e5b 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.69 2003/09/07 21:01:07 miod Exp $ */
+/* $OpenBSD: syscall.h,v 1.70 2003/12/10 23:11:36 millert Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.62 2003/09/07 21:00:27 miod Exp
+ * created from; OpenBSD: syscalls.master,v 1.63 2003/12/10 23:10:08 millert Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -567,7 +567,7 @@
/* syscall: "rfork" ret: "int" args: "int" */
#define SYS_rfork 251
-/* syscall: "poll" ret: "int" args: "struct pollfd *" "int" "int" */
+/* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */
#define SYS_poll 252
/* syscall: "issetugid" ret: "int" args: */
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index 81e1db508ee..8b6c8346e26 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.71 2003/09/07 21:01:08 miod Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.72 2003/12/10 23:11:36 millert Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.62 2003/09/07 21:00:27 miod Exp
+ * created from; OpenBSD: syscalls.master,v 1.63 2003/12/10 23:10:08 millert Exp
*/
#ifdef syscallarg
@@ -1018,7 +1018,7 @@ struct sys_rfork_args {
struct sys_poll_args {
syscallarg(struct pollfd *) fds;
- syscallarg(int) nfds;
+ syscallarg(u_int) nfds;
syscallarg(int) timeout;
};