diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-06-06 03:02:51 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-06-06 03:02:51 +0000 |
commit | aa02a0b0f20fda6255513c75f0673b240814b66c (patch) | |
tree | 9291628354996d24d40cfcbf60ef88fa1b2e361f /gdb | |
parent | 84e8cd0fcf61d9f41dac420a2c2ab51ada8ab39b (diff) | |
download | gdb-aa02a0b0f20fda6255513c75f0673b240814b66c.zip gdb-aa02a0b0f20fda6255513c75f0673b240814b66c.tar.gz gdb-aa02a0b0f20fda6255513c75f0673b240814b66c.tar.bz2 |
sim_kill() isn't used.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 24 | ||||
-rw-r--r-- | gdb/remote-sim.c | 3 |
2 files changed, 25 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 765f61a..98b9cb3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,9 +1,31 @@ +Fri Jun 6 13:01:55 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * remote-sim.c (gdbsim_kill): Remove call to depreciated function + sim_kill. + +Thu Jun 5 11:39:03 1997 Ian Lance Taylor <ian@cygnus.com> + + Fixes for recent correction to PE format: + * coffread.c (pe_file): New static variable. + (struct find_targ_sec_arg): Change resultp from pointer to int to + pointer to pointer to asection. + (find_targ_sec): Just store the section in args->resultp, not the + section offset value. + (cs_to_section): Compute the section offset value from the + section. + (cs_section_address): New static function. + (coff_symfile_read): Set pe_file. + (read_one_sym): When reading a PE file, adjust the symbol value to + include the section address if the symbol has an appropriate + storage class. + start-sanitize-r3900 Tue Jun 3 16:24:46 1997 Michael Snyder (msnyder@cleaver.cygnus.com) + * configure.tgt: add mipsr3900-elf target * config/mips/r3900.mt r3900l.mt tm-r3900.h tm-r3900l.h: ditto -end-sanitize-r3900 +end-sanitize-r3900 start-sanitize-gdbtk Tue Jun 3 15:46:51 1997 Tom Tromey <tromey@cygnus.com> diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index 7574cbe..7c21009 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -392,7 +392,8 @@ gdbsim_kill () if (sr_get_debug ()) printf_filtered ("gdbsim_kill\n"); - sim_kill (gdbsim_desc); /* close fd's, remove mappings, etc. */ + /* There is no need to `kill' running simulator - the simulator is + not running */ inferior_pid = 0; } |