Module Name:    src
Committed By:   pooka
Date:           Wed Oct 27 20:35:48 UTC 2010

Modified Files:
        src/sys/rump/include/rump: rumpkern_if_pub.h
        src/sys/rump/librump/rumpkern: rumpkern_if_priv.h
            rumpkern_if_wrappers.c

Log Message:
regen:
- rump_sysproxy
+ rump_syscall


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/rump/include/rump/rumpkern_if_pub.h
cvs rdiff -u -r1.8 -r1.9 src/sys/rump/librump/rumpkern/rumpkern_if_priv.h \
    src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/include/rump/rumpkern_if_pub.h
diff -u src/sys/rump/include/rump/rumpkern_if_pub.h:1.9 src/sys/rump/include/rump/rumpkern_if_pub.h:1.10
--- src/sys/rump/include/rump/rumpkern_if_pub.h:1.9	Wed Sep  1 19:33:04 2010
+++ src/sys/rump/include/rump/rumpkern_if_pub.h	Wed Oct 27 20:35:47 2010
@@ -1,8 +1,8 @@
-/*	$NetBSD: rumpkern_if_pub.h,v 1.9 2010/09/01 19:33:04 pooka Exp $	*/
+/*	$NetBSD: rumpkern_if_pub.h,v 1.10 2010/10/27 20:35:47 pooka Exp $	*/
 
 /*
  * Automatically generated.  DO NOT EDIT.
- * from: NetBSD: rumpkern.ifspec,v 1.6 2010/09/01 19:13:38 pooka Exp 
+ * from: NetBSD: rumpkern.ifspec,v 1.7 2010/10/27 20:34:50 pooka Exp 
  * by:   NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp 
  */
 
@@ -23,6 +23,4 @@
 void rump_pub_lwproc_releaselwp(void);
 struct lwp * rump_pub_lwproc_curlwp(void);
 void rump_pub_allbetsareoff_setid(pid_t, int);
-int rump_pub_sysproxy_set(rump_sysproxy_t, void *);
-int rump_pub_sysproxy_socket_setup_client(int);
-int rump_pub_sysproxy_socket_setup_server(int);
+int rump_pub_syscall(int, void *, register_t *);

Index: src/sys/rump/librump/rumpkern/rumpkern_if_priv.h
diff -u src/sys/rump/librump/rumpkern/rumpkern_if_priv.h:1.8 src/sys/rump/librump/rumpkern/rumpkern_if_priv.h:1.9
--- src/sys/rump/librump/rumpkern/rumpkern_if_priv.h:1.8	Wed Sep  1 19:33:05 2010
+++ src/sys/rump/librump/rumpkern/rumpkern_if_priv.h	Wed Oct 27 20:35:47 2010
@@ -1,8 +1,8 @@
-/*	$NetBSD: rumpkern_if_priv.h,v 1.8 2010/09/01 19:33:05 pooka Exp $	*/
+/*	$NetBSD: rumpkern_if_priv.h,v 1.9 2010/10/27 20:35:47 pooka Exp $	*/
 
 /*
  * Automatically generated.  DO NOT EDIT.
- * from: NetBSD: rumpkern.ifspec,v 1.6 2010/09/01 19:13:38 pooka Exp 
+ * from: NetBSD: rumpkern.ifspec,v 1.7 2010/10/27 20:34:50 pooka Exp 
  * by:   NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp 
  */
 
@@ -23,6 +23,4 @@
 void rump_lwproc_releaselwp(void);
 struct lwp * rump_lwproc_curlwp(void);
 void rump_allbetsareoff_setid(pid_t, int);
-int rump_sysproxy_set(rump_sysproxy_t, void *);
-int rump_sysproxy_socket_setup_client(int);
-int rump_sysproxy_socket_setup_server(int);
+int rump_syscall(int, void *, register_t *);
Index: src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c
diff -u src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c:1.8 src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c:1.9
--- src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c:1.8	Wed Sep  1 19:33:05 2010
+++ src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c	Wed Oct 27 20:35:47 2010
@@ -1,8 +1,8 @@
-/*	$NetBSD: rumpkern_if_wrappers.c,v 1.8 2010/09/01 19:33:05 pooka Exp $	*/
+/*	$NetBSD: rumpkern_if_wrappers.c,v 1.9 2010/10/27 20:35:47 pooka Exp $	*/
 
 /*
  * Automatically generated.  DO NOT EDIT.
- * from: NetBSD: rumpkern.ifspec,v 1.6 2010/09/01 19:13:38 pooka Exp 
+ * from: NetBSD: rumpkern.ifspec,v 1.7 2010/10/27 20:34:50 pooka Exp 
  * by:   NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp 
  */
 
@@ -213,36 +213,12 @@
 }
 
 int
-rump_pub_sysproxy_set(rump_sysproxy_t arg1, void *arg2)
+rump_pub_syscall(int arg1, void *arg2, register_t *arg3)
 {
 	int rv;
 
 	rump_schedule();
-	rv = rump_sysproxy_set(arg1, arg2);
-	rump_unschedule();
-
-	return rv;
-}
-
-int
-rump_pub_sysproxy_socket_setup_client(int arg1)
-{
-	int rv;
-
-	rump_schedule();
-	rv = rump_sysproxy_socket_setup_client(arg1);
-	rump_unschedule();
-
-	return rv;
-}
-
-int
-rump_pub_sysproxy_socket_setup_server(int arg1)
-{
-	int rv;
-
-	rump_schedule();
-	rv = rump_sysproxy_socket_setup_server(arg1);
+	rv = rump_syscall(arg1, arg2, arg3);
 	rump_unschedule();
 
 	return rv;

Reply via email to