public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] sim: frv: resolve syscalls dynamically
@ 2021-11-28  6:24 Mike Frysinger
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger @ 2021-11-28  6:24 UTC (permalink / raw)
  To: gdb-patches

Avoid use of TARGET_<syscall> defines and rely on the callback layers
to resolve these dynamically so we can support multiple syscall layers
instead of assuming the newlib/libgloss numbers all the time.
---
 sim/frv/traps.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sim/frv/traps.c b/sim/frv/traps.c
index 59f1a25f5f1c..2d44adcf3835 100644
--- a/sim/frv/traps.c
+++ b/sim/frv/traps.c
@@ -24,7 +24,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 #define WANT_CPU_FRVBF
 
 #include "sim-main.h"
-#include "targ-vals.h"
 #include "cgen-engine.h"
 #include "cgen-par.h"
 #include "sim-fpu.h"
@@ -134,7 +133,7 @@ frv_itrap (SIM_CPU *current_cpu, PCADDR pc, USI base, SI offset)
 	s.arg2 = GET_H_GR (9);
 	s.arg3 = GET_H_GR (10);
 
-	if (s.func == TARGET_SYS_exit)
+	if (cb_target_to_host_syscall (cb, s.func) == CB_SYS_exit)
 	  {
 	    sim_engine_halt (sd, current_cpu, NULL, pc, sim_exited, s.arg1);
 	  }
-- 
2.33.0


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-11-28  6:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-28  6:24 [PATCH] sim: frv: resolve syscalls dynamically Mike Frysinger

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).