Module Name:    src
Committed By:   pooka
Date:           Mon Mar  1 13:02:46 UTC 2010

Modified Files:
        src/sys/rump/librump/rumpkern: sysproxy_socket.c

Log Message:
Add types for LWP_CREATE and LWP_EXIT rpc calls.  Currently unimplemented.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/rump/librump/rumpkern/sysproxy_socket.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/librump/rumpkern/sysproxy_socket.c
diff -u src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.5 src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.6
--- src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.5	Thu Oct 15 16:39:22 2009
+++ src/sys/rump/librump/rumpkern/sysproxy_socket.c	Mon Mar  1 13:02:46 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: sysproxy_socket.c,v 1.5 2009/10/15 16:39:22 pooka Exp $	*/
+/*	$NetBSD: sysproxy_socket.c,v 1.6 2010/03/01 13:02:46 pooka Exp $	*/
 
 /*
  * Copyright (c) 2009 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sysproxy_socket.c,v 1.5 2009/10/15 16:39:22 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sysproxy_socket.c,v 1.6 2010/03/01 13:02:46 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -60,7 +60,8 @@
  * global "sock" will go away, it's quite disgusting.
  */
 
-enum rumprpc { RUMPRPC_SYSCALL, RUMPRPC_SYSCALL_RESP,
+enum rumprpc { RUMPRPC_LWP_CREATE, RUMPRPC_LWP_EXIT,
+	       RUMPRPC_SYSCALL, RUMPRPC_SYSCALL_RESP,
 	       RUMPRPC_COPYIN, RUMPRPC_COPYIN_RESP,
 	       RUMPRPC_COPYOUT, RUMPRPC_COPYOUT_RESP };
 

Reply via email to