Wed Oct 27 20:34:50 2010 UTC ()
Retire the old sysproxy nonsense (as part of doing it slightly better).

Introduce rump_pub_syscall() as the generic interface for making
system calls with already marshalled arguments.  So it's kinda like
syscall(2), except it also remembered to breathe instead of having
to figure out how to deal with 64bit values.


(pooka)
diff -r1.6 -r1.7 src/sys/rump/librump/rumpkern/rumpkern.ifspec
diff -r1.9 -r0 src/sys/rump/librump/rumpkern/sysproxy_socket.c

cvs diff -r1.6 -r1.7 src/sys/rump/librump/rumpkern/rumpkern.ifspec (expand / switch to context diff)
--- src/sys/rump/librump/rumpkern/rumpkern.ifspec 2010/09/01 19:13:38 1.6
+++ src/sys/rump/librump/rumpkern/rumpkern.ifspec 2010/10/27 20:34:50 1.7
@@ -1,4 +1,4 @@
-;	$NetBSD: rumpkern.ifspec,v 1.6 2010/09/01 19:13:38 pooka Exp $
+;	$NetBSD: rumpkern.ifspec,v 1.7 2010/10/27 20:34:50 pooka Exp $
 
 NAME|kern
 PUBHDR|include/rump/rumpkern_if_pub.h
@@ -32,6 +32,4 @@
 
 void		|allbetsareoff_setid	|pid_t, int
 
-int		|sysproxy_set			|rump_sysproxy_t, void *
+int		|syscall	|int, void *, register_t *
-int		|sysproxy_socket_setup_client	|int
-int		|sysproxy_socket_setup_server	|int

File Deleted: src/sys/rump/librump/rumpkern/Attic/sysproxy_socket.c