From patchwork Sun Mar 13 20:16:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Added missing sigbus_reraise() to non-Linux platforms Date: Sun, 13 Mar 2011 10:16:52 -0000 From: Palle Lyckegaard X-Patchwork-Id: 86614 Message-Id: To: qemu-devel Hi, File cpus.c seems to be missing sigbus_reraise() on non-Linux platforms. The following patch fixes building qemu on Solaris 11 Express (SPARC). Regards Palle Signed-off-by: Palle Lyckegaard Reviewed-by: Stefan Hajnoczi --- cpus.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/cpus.c b/cpus.c index 077729c..02ba1be 100644 --- a/cpus.c +++ b/cpus.c @@ -250,6 +250,11 @@ static void qemu_init_sigbus(void) static void qemu_init_sigbus(void) { } + +static void sigbus_reraise(void) +{ +} + #endif /* !CONFIG_LINUX */ #ifndef _WIN32