diff options
author | Ben Elliston <bje@au.ibm.com> | 2001-02-19 21:57:03 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2001-02-19 21:57:03 +0000 |
commit | 8030f85769ed93908f16696615ed22242f861eba (patch) | |
tree | 4aa4aa6509b8538874927a2f146d5b43fe91cf83 /sim/mips/sim-main.h | |
parent | 9b0c4aebb4416e91afb9ee6fc66d261a3f04a43c (diff) | |
download | gdb-8030f85769ed93908f16696615ed22242f861eba.zip gdb-8030f85769ed93908f16696615ed22242f861eba.tar.gz gdb-8030f85769ed93908f16696615ed22242f861eba.tar.bz2 |
2001-02-19 Ben Elliston <bje@redhat.com>
* sim-main.h (sim_monitor): Return an int.
* interp.c (sim_monitor): Add return values.
(signal_exception): Handle error conditions from sim_monitor.
Diffstat (limited to 'sim/mips/sim-main.h')
-rw-r--r-- | sim/mips/sim-main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/mips/sim-main.h b/sim/mips/sim-main.h index 7db51a1..9e87fbf 100644 --- a/sim/mips/sim-main.h +++ b/sim/mips/sim-main.h @@ -690,7 +690,7 @@ void decode_coproc PARAMS ((SIM_DESC sd, sim_cpu *cpu, address_word cia, unsigne #define DecodeCoproc(instruction) \ decode_coproc (SD, CPU, cia, (instruction)) -void sim_monitor (SIM_DESC sd, sim_cpu *cpu, address_word cia, unsigned int arg); +int sim_monitor (SIM_DESC sd, sim_cpu *cpu, address_word cia, unsigned int arg); |