This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

FYI, include/remote-sim.h update.


Just FYI.
	Andrew
: include/ChangeLog
Tue Feb 22 15:19:54 2000  Andrew Cagney  <cagney@b1.cygnus.com>

	* remote-sim.h (sim_trace): Document return values.
	(sim_set_trace): Declare.  Deprecate.

Index: include/remote-sim.h
===================================================================
RCS file: /cvs/src/src/include/remote-sim.h,v
retrieving revision 1.2
diff -p -r1.2 remote-sim.h
*** remote-sim.h	2000/02/09 07:44:03	1.2
--- remote-sim.h	2000/02/22 08:20:34
*************** void sim_set_callbacks PARAMS ((struct h
*** 308,320 ****
  void sim_size PARAMS ((int i));
  
  
! /* Run a simulation with tracing enabled.
     THIS PROCEDURE 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. */
  
  int sim_trace PARAMS ((SIM_DESC sd));
  
  
  /* Configure the size of the profile buffer.
--- 308,332 ----
  void sim_size PARAMS ((int i));
  
  
! /* Single-step simulator with tracing enabled.
     THIS PROCEDURE IS DEPRECIATED.
+    THIS PROCEDURE IS EVEN MORE DEPRECATED THAN SIM_SET_TRACE
     GDB and NRUN do not use this interface.
!    This procedure returns: ``0'' indicating that the simulator should
!    be continued using sim_trace() calls; ``1'' indicating that the
!    simulation has finished. */
  
  int sim_trace PARAMS ((SIM_DESC sd));
+ 
+ 
+ /* Enable tracing.
+    THIS PROCEDURE IS DEPRECIATED.
+    GDB and NRUN do not use this interface.
+    This procedure returns: ``0'' indicating that the simulator should
+    be continued using sim_trace() calls; ``1'' indicating that the
+    simulation has finished. */
+ 
+ void sim_set_trace PARAMS ((void));
  
  
  /* Configure the size of the profile buffer.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]