From c15f18f449d4151d354f639faf3981afc407ae78 Mon Sep 17 00:00:00 2001 From: pooka Date: Wed, 23 Jun 2010 08:36:03 +0000 Subject: [PATCH] As normal, fix breakage from untested commits by rmind. --- sys/rump/librump/rumpkern/emul.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/sys/rump/librump/rumpkern/emul.c b/sys/rump/librump/rumpkern/emul.c index cd87551f1c6b..404516f18889 100644 --- a/sys/rump/librump/rumpkern/emul.c +++ b/sys/rump/librump/rumpkern/emul.c @@ -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 -__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 #include @@ -261,3 +261,11 @@ syscall_intern(struct proc *p) /* 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"); +}