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 /include | |
parent | 84e8cd0fcf61d9f41dac420a2c2ab51ada8ab39b (diff) | |
download | gdb-aa02a0b0f20fda6255513c75f0673b240814b66c.zip gdb-aa02a0b0f20fda6255513c75f0673b240814b66c.tar.gz gdb-aa02a0b0f20fda6255513c75f0673b240814b66c.tar.bz2 |
sim_kill() isn't used.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 8 | ||||
-rw-r--r-- | include/remote-sim.h | 20 |
2 files changed, 22 insertions, 6 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 95a32dc..da2de80 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,11 @@ +Fri Jun 6 13:02:33 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * remote-sim.h (sim_kill): Mark as depreciated. + +Fri May 23 13:43:41 1997 Fred Fish <fnf@cygnus.com> + + * bfdlink.h (struct bfd_link_info): Add task_link member. + Thu May 22 11:32:49 1997 Andrew Cagney <cagney@b1.cygnus.com> * remote-sim.h: Review documentation. Clarify restrictions on diff --git a/include/remote-sim.h b/include/remote-sim.h index 1578ed9..369f4fa 100644 --- a/include/remote-sim.h +++ b/include/remote-sim.h @@ -101,12 +101,6 @@ SIM_RC sim_load PARAMS ((SIM_DESC sd, char *prog, struct _bfd *abfd, int from_tt SIM_RC sim_create_inferior PARAMS ((SIM_DESC sd, char **argv, char **env)); -/* Kill the running program. - This may involve closing any open files and deleting any mmap'd areas. */ - -void sim_kill PARAMS ((SIM_DESC sd)); - - /* Read LENGTH bytes of the simulated program's memory and store in BUF. Result is number of bytes read, or zero if error. */ @@ -173,6 +167,7 @@ void sim_do_command PARAMS ((SIM_DESC sd, char *cmd)); /* Provide simulator with a default (global) host_callback_struct. THIS PROCEDURE IS IS DEPRECIATED. + GDB and NRUN do not use this interface. This procedure does not take a SIM_DESC argument as it is used before sim_open. */ @@ -181,6 +176,7 @@ void sim_set_callbacks PARAMS ((struct host_callback_struct *)); /* Set the size of the simulator memory array. THIS PROCEDURE IS IS DEPRECIATED. + GDB and NRUN do not use this interface. This procedure does not take a SIM_DESC argument as it is used before sim_open. */ @@ -189,6 +185,7 @@ void sim_size PARAMS ((int i)); /* Run a simulation with tracing enabled. THIS PROCEDURE IS IS DEPRECIATED. + GDB and NRUN do not use this interface. This procedure does not take a SIM_DESC argument as it is used before sim_open. */ @@ -197,9 +194,20 @@ int sim_trace PARAMS ((SIM_DESC sd)); /* Configure the size of the profile buffer. THIS PROCEDURE IS IS DEPRECIATED. + GDB and NRUN do not use this interface. This procedure does not take a SIM_DESC argument as it is used before sim_open. */ void sim_set_profile_size PARAMS ((int n)); + +/* Kill the running program. + THIS PROCEDURE IS IS DEPRECIATED. + GDB and NRUN do not use this interface. + This procedure will be replaced as part of the introduction of + multi-cpu simulators. */ + +void sim_kill PARAMS ((SIM_DESC sd)); + + #endif /* !defined (REMOTE_SIM_H) */ |