Module Name:    src
Committed By:   pooka
Date:           Tue Dec  1 09:52:29 UTC 2009

Modified Files:
        src/sys/rump/librump/rumpkern: Makefile.rumpkern emul.c

Log Message:
Include cpu crosscall support (instead of stubbing it out).


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/rump/librump/rumpkern/Makefile.rumpkern
cvs rdiff -u -r1.110 -r1.111 src/sys/rump/librump/rumpkern/emul.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/Makefile.rumpkern
diff -u src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.65 src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.66
--- src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.65	Fri Nov 27 13:45:15 2009
+++ src/sys/rump/librump/rumpkern/Makefile.rumpkern	Tue Dec  1 09:52:29 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.rumpkern,v 1.65 2009/11/27 13:45:15 pooka Exp $
+#	$NetBSD: Makefile.rumpkern,v 1.66 2009/12/01 09:52:29 pooka Exp $
 #
 
 .include "${RUMPTOP}/Makefile.rump"
@@ -41,7 +41,7 @@
 SRCS+=	subr_devsw.c subr_callback.c subr_copy.c subr_evcnt.c		\
 	subr_extent.c subr_hash.c subr_humanize.c subr_iostat.c		\
 	subr_kobj.c subr_log.c subr_once.c subr_prf.c			\
-	subr_specificdata.c subr_time.c subr_workqueue.c
+	subr_specificdata.c subr_time.c subr_workqueue.c subr_xcall.c
 
 # sys/uvm
 SRCS+=	uvm_readahead.c

Index: src/sys/rump/librump/rumpkern/emul.c
diff -u src/sys/rump/librump/rumpkern/emul.c:1.110 src/sys/rump/librump/rumpkern/emul.c:1.111
--- src/sys/rump/librump/rumpkern/emul.c:1.110	Thu Nov 26 20:58:51 2009
+++ src/sys/rump/librump/rumpkern/emul.c	Tue Dec  1 09:52:29 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: emul.c,v 1.110 2009/11/26 20:58:51 pooka Exp $	*/
+/*	$NetBSD: emul.c,v 1.111 2009/12/01 09:52:29 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.110 2009/11/26 20:58:51 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.111 2009/12/01 09:52:29 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/null.h>
@@ -492,17 +492,3 @@
 
 	return 0;
 }
-
-/* crosscalls not done, no other hardware CPUs */
-uint64_t
-xc_broadcast(u_int flags, xcfunc_t func, void *arg1, void *arg2)
-{
-
-	return -1;
-}
-
-void
-xc_wait(uint64_t where)
-{
-
-}

Reply via email to