public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Define an error function in the PPC simulator.
@ 2016-11-24 15:31 John Baldwin
  2016-11-25 16:49 ` Mike Frysinger
  0 siblings, 1 reply; 6+ messages in thread
From: John Baldwin @ 2016-11-24 15:31 UTC (permalink / raw)
  To: gdb-patches

Previously this used the error function from GDB directly instead of
the error method in the host callbacks structure.  This was exposed via
a link error when GDB was converted to C++.  The error function invokes
the error callback similar to sim_io_error.

sim/ppc/ChangeLog:

	* sim_calls.c (error): New function.
---
 sim/ppc/ChangeLog   |  4 ++++
 sim/ppc/sim_calls.c | 10 ++++++++++
 2 files changed, 14 insertions(+)

diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog
index 7ed024e..f7d8ffb 100644
--- a/sim/ppc/ChangeLog
+++ b/sim/ppc/ChangeLog
@@ -1,3 +1,7 @@
+2016-11-24  John Baldwin  <jhb@FreeBSD.org>
+
+	* sim_calls.c (error): New function.
+
 2016-01-10  Mike Frysinger  <vapier@gentoo.org>
 
 	* configure.ac (sim-assert): Call AC_MSG_CHECKING,
diff --git a/sim/ppc/sim_calls.c b/sim/ppc/sim_calls.c
index 470c958..eb5d1a7 100644
--- a/sim/ppc/sim_calls.c
+++ b/sim/ppc/sim_calls.c
@@ -386,6 +386,16 @@ sim_io_error (SIM_DESC sd, const char *fmt, ...)
 
 /****/
 
+void NORETURN
+error (const char *msg, ...)
+{
+  va_list ap;
+  va_start(ap, msg);
+  callbacks->evprintf_filtered (callbacks, msg, ap);
+  va_end(ap);
+  callbacks->error (callbacks, "");
+}
+
 void *
 zalloc(long size)
 {
-- 
2.9.2

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-12-23 21:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-24 15:31 [PATCH] Define an error function in the PPC simulator John Baldwin
2016-11-25 16:49 ` Mike Frysinger
2016-11-25 18:20   ` John Baldwin
2016-11-26 22:20     ` Mike Frysinger
2016-12-06 20:18       ` John Baldwin
2016-12-23 21:29         ` John Baldwin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).