aboutsummaryrefslogtreecommitdiff
path: root/sim/h8300/sim-main.h
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2003-07-02 19:04:58 +0000
committerMichael Snyder <msnyder@vmware.com>2003-07-02 19:04:58 +0000
commitf0861129d52b00fe57beb4fb0efca668faa3939a (patch)
tree2bac9b6593db78f58f8116a686dd9f2453f83e94 /sim/h8300/sim-main.h
parentfd13a04acf73b5a59f9212c8a0fac24ddd0d434a (diff)
downloadfsf-binutils-gdb-f0861129d52b00fe57beb4fb0efca668faa3939a.zip
fsf-binutils-gdb-f0861129d52b00fe57beb4fb0efca668faa3939a.tar.gz
fsf-binutils-gdb-f0861129d52b00fe57beb4fb0efca668faa3939a.tar.bz2
2003-06-24 Michael Snyder <msnyder@redhat.com>
* sim-main.h (SIM_WIFSTOPPED, SIM_WSTOPSIG): Define. * compile.c (sim_resume): Use the above to return stop signal.
Diffstat (limited to 'sim/h8300/sim-main.h')
-rw-r--r--sim/h8300/sim-main.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sim/h8300/sim-main.h b/sim/h8300/sim-main.h
index 6acf901..284a558 100644
--- a/sim/h8300/sim-main.h
+++ b/sim/h8300/sim-main.h
@@ -164,7 +164,9 @@ struct sim_state {
/* Local version of macros for decoding exit status.
(included here rather than try to find target version of wait.h)
*/
-#define SIM_WIFEXITED(V) (((V) & 0xff) == 0)
-#define SIM_WEXITSTATUS(V) ((V) >> 8)
+#define SIM_WIFEXITED(V) (((V) & 0xff) == 0)
+#define SIM_WIFSTOPPED(V) (!SIM_WIFEXITED (V))
+#define SIM_WEXITSTATUS(V) (((V) >> 8) & 0xff)
+#define SIM_WSTOPSIG(V) ((V) & 0x7f)
#endif /* SIM_MAIN_H */