diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-05-25 07:37:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-05-25 07:37:30 +0000 |
commit | 39e953a72287cfa9335871478f27258989a22a66 (patch) | |
tree | 6438a7bde0347193bf8971ff7f1024e27b85690d /sim/mn10300 | |
parent | 2f06c437e28ea3bfab27cc9b9b11dd235397a938 (diff) | |
download | gdb-39e953a72287cfa9335871478f27258989a22a66.zip gdb-39e953a72287cfa9335871478f27258989a22a66.tar.gz gdb-39e953a72287cfa9335871478f27258989a22a66.tar.bz2 |
Split out hw-event code. Clean up interface. Update all users.
Diffstat (limited to 'sim/mn10300')
-rw-r--r-- | sim/mn10300/ChangeLog | 7 | ||||
-rw-r--r-- | sim/mn10300/dv-mn103cpu.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog index e3e59b1..7360a73 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,8 +1,13 @@ +start-sanitize-am30 +Mon May 25 17:33:33 1998 Andrew Cagney <cagney@b1.cygnus.com> + + * dv-mn103cpu.c (struct mn103cpu): Change type of pending_handler + to struct hw_event. + Fri May 22 12:17:41 1998 Andrew Cagney <cagney@b1.cygnus.com> * configure.in (SIM_AC_OPTION_HARDWARE): Add argument "yes". -start-sanitize-am30 Wed May 6 13:29:06 1998 Andrew Cagney <cagney@b1.cygnus.com> * interp.c (sim_open): Create a polling PAL device. diff --git a/sim/mn10300/dv-mn103cpu.c b/sim/mn10300/dv-mn103cpu.c index f85ea34..cce89f4 100644 --- a/sim/mn10300/dv-mn103cpu.c +++ b/sim/mn10300/dv-mn103cpu.c @@ -107,7 +107,7 @@ struct mn103cpu_block { struct mn103cpu { struct mn103cpu_block block; - hw_event *pending_handler; + struct hw_event *pending_handler; int pending_level; int pending_nmi; int pending_reset; |