diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-05-20 01:57:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-05-20 01:57:43 +0000 |
commit | ff82f21409746d1f9491b9c4ab13e74686ca6652 (patch) | |
tree | e47ac3cfaad58a74606f879ef932418b2b04a91a /sim/w65 | |
parent | 24aa2b57afc51bb0d47d8a3cfa470ad40a36cc6b (diff) | |
download | gdb-ff82f21409746d1f9491b9c4ab13e74686ca6652.zip gdb-ff82f21409746d1f9491b9c4ab13e74686ca6652.tar.gz gdb-ff82f21409746d1f9491b9c4ab13e74686ca6652.tar.bz2 |
Part II of adding callback argument to sim_open(). Update all the
other simulators; remove SIM_DESC from depreciated function
sim_set_callbacks().
Diffstat (limited to 'sim/w65')
-rw-r--r-- | sim/w65/ChangeLog | 4 | ||||
-rw-r--r-- | sim/w65/interp.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/w65/ChangeLog b/sim/w65/ChangeLog index 1f32585..0be0da3 100644 --- a/sim/w65/ChangeLog +++ b/sim/w65/ChangeLog @@ -1,3 +1,7 @@ +Tue May 20 10:24:54 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * interp.c (sim_open): Add callback argument. + Tue Apr 15 14:55:10 1997 Ian Lance Taylor <ian@cygnus.com> * Makefile.in (INSTALL): Set to @INSTALL@. diff --git a/sim/w65/interp.c b/sim/w65/interp.c index c01be45..70e7b47 100644 --- a/sim/w65/interp.c +++ b/sim/w65/interp.c @@ -322,8 +322,9 @@ sim_kill () } void -sim_open (kind,argv) +sim_open (kind,cb,argv) SIM_OPEN_KIND kind; + host_callback *cb; char **argv; { } |