Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys regen: fix rump varargs syscalls prototypes



details:   https://anonhg.NetBSD.org/src/rev/f41338879800
branches:  trunk
changeset: 748105:f41338879800
user:      pooka <pooka%NetBSD.org@localhost>
date:      Tue Oct 13 21:57:52 2009 +0000

description:
regen: fix rump varargs syscalls prototypes

diffstat:

 sys/kern/init_sysent.c                    |   6 +++---
 sys/kern/syscalls.c                       |   6 +++---
 sys/rump/include/rump/rump_syscalls.h     |  10 +++++-----
 sys/rump/librump/rumpkern/rump_syscalls.c |   6 +++---
 sys/sys/syscall.h                         |   4 ++--
 sys/sys/syscallargs.h                     |   4 ++--
 6 files changed, 18 insertions(+), 18 deletions(-)

diffs (136 lines):

diff -r 4f8346cacb77 -r f41338879800 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c    Tue Oct 13 21:54:29 2009 +0000
+++ b/sys/kern/init_sysent.c    Tue Oct 13 21:57:52 2009 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.240 2009/07/19 02:54:21 rmind Exp $ */
+/* $NetBSD: init_sysent.c,v 1.241 2009/10/13 21:57:53 pooka Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.228 2009/07/19 02:50:44 rmind Exp
+ * created from        NetBSD: syscalls.master,v 1.229 2009/07/21 23:59:00 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.240 2009/07/19 02:54:21 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.241 2009/10/13 21:57:53 pooka Exp $");
 
 #include "opt_modular.h"
 #include "opt_ntp.h"
diff -r 4f8346cacb77 -r f41338879800 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Tue Oct 13 21:54:29 2009 +0000
+++ b/sys/kern/syscalls.c       Tue Oct 13 21:57:52 2009 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.231 2009/07/19 02:54:21 rmind Exp $ */
+/* $NetBSD: syscalls.c,v 1.232 2009/10/13 21:57:53 pooka Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.228 2009/07/19 02:50:44 rmind Exp
+ * created from        NetBSD: syscalls.master,v 1.229 2009/07/21 23:59:00 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.231 2009/07/19 02:54:21 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.232 2009/10/13 21:57:53 pooka Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_modular.h"
diff -r 4f8346cacb77 -r f41338879800 sys/rump/include/rump/rump_syscalls.h
--- a/sys/rump/include/rump/rump_syscalls.h     Tue Oct 13 21:54:29 2009 +0000
+++ b/sys/rump/include/rump/rump_syscalls.h     Tue Oct 13 21:57:52 2009 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_syscalls.h,v 1.15 2009/07/21 23:59:19 pooka Exp $ */
+/* $NetBSD: rump_syscalls.h,v 1.16 2009/10/13 21:57:52 pooka Exp $ */
 
 /*
  * System call protos in rump namespace.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.228 2009/07/19 02:50:44 rmind Exp
+ * created from        NetBSD: syscalls.master,v 1.229 2009/07/21 23:59:00 pooka Exp
  */
 
 #ifdef _RUMPKERNEL
@@ -18,7 +18,7 @@
 
 ssize_t rump_sys_read(int, void *, size_t);
 ssize_t rump_sys_write(int, const void *, size_t);
-int rump_sys_open(const char *, int, mode_t);
+int rump_sys_open(const char *, int, ...);
 int rump_sys_close(int);
 int rump_sys_link(const char *, const char *);
 int rump_sys_unlink(const char *);
@@ -38,13 +38,13 @@
 int rump_sys_fchflags(int, u_long);
 void rump_sys_sync(void);
 int rump_sys_dup(int);
-int rump_sys_ioctl(int, u_long, void *);
+int rump_sys_ioctl(int, u_long, ...);
 int rump_sys_revoke(const char *);
 int rump_sys_symlink(const char *, const char *);
 ssize_t rump_sys_readlink(const char *, char *, size_t);
 int rump_sys_chroot(const char *);
 int rump_sys_dup2(int, int);
-int rump_sys_fcntl(int, int, void *);
+int rump_sys_fcntl(int, int, ...);
 int rump_sys_fsync(int);
 int rump_sys_connect(int, const struct sockaddr *, unsigned int);
 int rump_sys_bind(int, const struct sockaddr *, unsigned int);
diff -r 4f8346cacb77 -r f41338879800 sys/rump/librump/rumpkern/rump_syscalls.c
--- a/sys/rump/librump/rumpkern/rump_syscalls.c Tue Oct 13 21:54:29 2009 +0000
+++ b/sys/rump/librump/rumpkern/rump_syscalls.c Tue Oct 13 21:57:52 2009 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: rump_syscalls.c,v 1.36 2009/07/21 23:59:20 pooka Exp $ */
+/* $NetBSD: rump_syscalls.c,v 1.37 2009/10/13 21:57:53 pooka Exp $ */
 
 /*
  * System call vector and marshalling for rump.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.228 2009/07/19 02:50:44 rmind Exp
+ * created from        NetBSD: syscalls.master,v 1.229 2009/07/21 23:59:00 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.36 2009/07/21 23:59:20 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.37 2009/10/13 21:57:53 pooka Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
diff -r 4f8346cacb77 -r f41338879800 sys/sys/syscall.h
--- a/sys/sys/syscall.h Tue Oct 13 21:54:29 2009 +0000
+++ b/sys/sys/syscall.h Tue Oct 13 21:57:52 2009 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.228 2009/07/19 02:54:22 rmind Exp $ */
+/* $NetBSD: syscall.h,v 1.229 2009/10/13 21:57:53 pooka Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.228 2009/07/19 02:50:44 rmind Exp
+ * created from        NetBSD: syscalls.master,v 1.229 2009/07/21 23:59:00 pooka Exp
  */
 
 #ifndef _SYS_SYSCALL_H_
diff -r 4f8346cacb77 -r f41338879800 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h     Tue Oct 13 21:54:29 2009 +0000
+++ b/sys/sys/syscallargs.h     Tue Oct 13 21:57:52 2009 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.210 2009/07/19 02:54:22 rmind Exp $ */
+/* $NetBSD: syscallargs.h,v 1.211 2009/10/13 21:57:53 pooka Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.228 2009/07/19 02:50:44 rmind Exp
+ * created from        NetBSD: syscalls.master,v 1.229 2009/07/21 23:59:00 pooka Exp
  */
 
 #ifndef _SYS_SYSCALLARGS_H_



Home | Main Index | Thread Index | Old Index