diff options
author | Andrew Cagney <cagney@gnu.org> | 2003-02-27 23:13:32 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@gnu.org> | 2003-02-27 23:13:32 +0000 |
commit | f31d07a962949d19ece6c8d086708bb09edc87ec (patch) | |
tree | e3f8fa054523ac52e48ee6942d1aa37ab8ae2671 /include/gdb | |
parent | 5777b970bb7023d7bcbd59fc831eaea89cfd8c21 (diff) | |
download | newlib-f31d07a962949d19ece6c8d086708bb09edc87ec.zip newlib-f31d07a962949d19ece6c8d086708bb09edc87ec.tar.gz newlib-f31d07a962949d19ece6c8d086708bb09edc87ec.tar.bz2 |
2003-02-27 Andrew Cagney <cagney@redhat.com>
* remote-sim.h (sim_open, sim_load, sim_create_inferior): Rename
_bfd to bfd.
Diffstat (limited to 'include/gdb')
-rw-r--r-- | include/gdb/ChangeLog | 5 | ||||
-rw-r--r-- | include/gdb/remote-sim.h | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog index 1cb37d7..f60f7b1 100644 --- a/include/gdb/ChangeLog +++ b/include/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-02-27 Andrew Cagney <cagney@redhat.com> + + * remote-sim.h (sim_open, sim_load, sim_create_inferior): Rename + _bfd to bfd. + 2003-02-20 Andrew Cagney <ac131313@redhat.com> * remote-sim.h (SIM_RC): Delete unused SIM_RC_UNKNOWN_BREAKPOINT, diff --git a/include/gdb/remote-sim.h b/include/gdb/remote-sim.h index c6acabd..a49ba1a 100644 --- a/include/gdb/remote-sim.h +++ b/include/gdb/remote-sim.h @@ -64,7 +64,7 @@ typedef enum { /* The bfd struct, as an opaque type. */ -struct _bfd; +struct bfd; /* Main simulator entry points. */ @@ -105,7 +105,7 @@ struct _bfd; sim_create_inferior. FIXME: What should the state of the simulator be? */ -SIM_DESC sim_open PARAMS ((SIM_OPEN_KIND kind, struct host_callback_struct *callback, struct _bfd *abfd, char **argv)); +SIM_DESC sim_open PARAMS ((SIM_OPEN_KIND kind, struct host_callback_struct *callback, struct bfd *abfd, char **argv)); /* Destory a simulator instance. @@ -142,7 +142,7 @@ void sim_close PARAMS ((SIM_DESC sd, int quitting)); Such manipulation should probably (?) occure in sim_create_inferior. */ -SIM_RC sim_load PARAMS ((SIM_DESC sd, char *prog, struct _bfd *abfd, int from_tty)); +SIM_RC sim_load PARAMS ((SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty)); /* Prepare to run the simulated program. @@ -162,7 +162,7 @@ SIM_RC sim_load PARAMS ((SIM_DESC sd, char *prog, struct _bfd *abfd, int from_tt address space (according to the applicable ABI) and the program counter and stack pointer set accordingly. */ -SIM_RC sim_create_inferior PARAMS ((SIM_DESC sd, struct _bfd *abfd, char **argv, char **env)); +SIM_RC sim_create_inferior PARAMS ((SIM_DESC sd, struct bfd *abfd, char **argv, char **env)); /* Fetch LENGTH bytes of the simulated program's memory. Start fetch |