Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/librump/rumpkern Add types for LWP_CREATE and LWP_E...



details:   https://anonhg.NetBSD.org/src/rev/6a58b96c5968
branches:  trunk
changeset: 752560:6a58b96c5968
user:      pooka <pooka%NetBSD.org@localhost>
date:      Mon Mar 01 13:02:46 2010 +0000

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

diffstat:

 sys/rump/librump/rumpkern/sysproxy_socket.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r 4ab46967f02a -r 6a58b96c5968 sys/rump/librump/rumpkern/sysproxy_socket.c
--- a/sys/rump/librump/rumpkern/sysproxy_socket.c       Mon Mar 01 13:01:16 2010 +0000
+++ b/sys/rump/librump/rumpkern/sysproxy_socket.c       Mon Mar 01 13:02:46 2010 +0000
@@ -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 };
 



Home | Main Index | Thread Index | Old Index