Module Name: src
Committed By: pooka
Date: Wed Jun 23 08:36:03 UTC 2010
Modified Files:
src/sys/rump/librump/rumpkern: emul.c
Log Message:
As normal, fix breakage from untested commits by rmind.
To generate a diff of this commit:
cvs rdiff -u -r1.143 -r1.144 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/emul.c
diff -u src/sys/rump/librump/rumpkern/emul.c:1.143 src/sys/rump/librump/rumpkern/emul.c:1.144
--- src/sys/rump/librump/rumpkern/emul.c:1.143 Mon Jun 14 13:28:44 2010
+++ src/sys/rump/librump/rumpkern/emul.c Wed Jun 23 08:36:03 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: emul.c,v 1.143 2010/06/14 13:28:44 pooka Exp $ */
+/* $NetBSD: emul.c,v 1.144 2010/06/23 08:36:03 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.143 2010/06/14 13:28:44 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.144 2010/06/23 08:36:03 pooka Exp $");
#include <sys/param.h>
#include <sys/null.h>
@@ -261,3 +261,11 @@
/* no you don't */
}
#endif
+
+void
+xc_send_ipi(struct cpu_info *ci)
+{
+
+ /* I'll think about the implementation if this is ever used */
+ panic("not implemented");
+}