This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ob/commit] somsolib whitespace tweaks


2005-01-13  Michael Snyder  <msnyder@redhat.com>

	* somsolib.[ch]: Whitespace tweaks.

Index: somsolib.c
===================================================================
RCS file: /cvs/src/src/gdb/somsolib.c,v
retrieving revision 1.39
diff -p -r1.39 somsolib.c
*** somsolib.c	5 Dec 2004 19:41:37 -0000	1.39
--- somsolib.c	14 Jan 2005 02:04:46 -0000
*************** keep_going:
*** 1064,1071 ****
     shared library events.  To resume notifications, GDB must call
     som_solib_create_inferior_hook.
  
!    This operation does not remove any knowledge of shared libraries which
!    GDB may already have been notified of.
   */
  void
  som_solib_remove_inferior_hook (int pid)
--- 1064,1071 ----
     shared library events.  To resume notifications, GDB must call
     som_solib_create_inferior_hook.
  
!    This operation does not remove any knowledge of shared libraries 
!    of which GDB may already have been notified.
   */
  void
  som_solib_remove_inferior_hook (int pid)
*************** void
*** 1117,1123 ****
  som_solib_create_catch_load_hook (int pid, int tempflag, char *filename,
  				  char *cond_string)
  {
!   create_solib_load_event_breakpoint ("__d_trap", tempflag, filename, cond_string);
  }
  
  /* This function creates a breakpoint on the dynamic linker hook, which
--- 1117,1124 ----
  som_solib_create_catch_load_hook (int pid, int tempflag, char *filename,
  				  char *cond_string)
  {
!   create_solib_load_event_breakpoint ("__d_trap", tempflag, 
! 				      filename, cond_string);
  }
  
  /* This function creates a breakpoint on the dynamic linker hook, which
*************** void
*** 1135,1141 ****
  som_solib_create_catch_unload_hook (int pid, int tempflag, char *filename,
  				    char *cond_string)
  {
!   create_solib_unload_event_breakpoint ("__d_trap", tempflag, filename, cond_string);
  }
  
  int
--- 1136,1143 ----
  som_solib_create_catch_unload_hook (int pid, int tempflag, char *filename,
  				    char *cond_string)
  {
!   create_solib_unload_event_breakpoint ("__d_trap", tempflag, 
! 					filename, cond_string);
  }
  
  int
Index: somsolib.h
===================================================================
RCS file: /cvs/src/src/gdb/somsolib.h,v
retrieving revision 1.8
diff -p -r1.8 somsolib.h
*** somsolib.h	13 Nov 2004 02:19:03 -0000	1.8
--- somsolib.h	14 Jan 2005 02:04:46 -0000
*************** extern CORE_ADDR som_solib_get_got_by_pc
*** 43,52 ****
  extern int som_solib_section_offsets (struct objfile *,
  				      struct section_offsets *);
  
! /* Function to be called when the inferior starts up, to discover the names
!    of shared libraries that are dynamically linked, the base addresses to
!    which they are linked, and sufficient information to read in their symbols
!    at a later time. */
  
  #define SOLIB_CREATE_INFERIOR_HOOK(PID)	som_solib_create_inferior_hook()
  
--- 43,52 ----
  extern int som_solib_section_offsets (struct objfile *,
  				      struct section_offsets *);
  
! /* Function to be called when the inferior starts up, to discover the
!    names of shared libraries that are dynamically linked, the base
!    addresses to which they are linked, and sufficient information to
!    read in their symbols at a later time.  */
  
  #define SOLIB_CREATE_INFERIOR_HOOK(PID)	som_solib_create_inferior_hook()
  
*************** extern void som_solib_create_inferior_ho
*** 57,63 ****
     (This operation does not remove shared library information from
     the debugger, as CLEAR_SOLIB does.)
   */
! #define SOLIB_REMOVE_INFERIOR_HOOK(PID) som_solib_remove_inferior_hook(PID)
  
  extern void som_solib_remove_inferior_hook (int);
  
--- 57,63 ----
     (This operation does not remove shared library information from
     the debugger, as CLEAR_SOLIB does.)
   */
! #define SOLIB_REMOVE_INFERIOR_HOOK(PID) som_solib_remove_inferior_hook (PID)
  
  extern void som_solib_remove_inferior_hook (int);
  
*************** extern void som_solib_remove_inferior_ho
*** 65,71 ****
     the debugger to be notified by the dynamic linker when a specified
     library file (or any library file, if filename is NULL) is loaded.
   */
! #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag, filename,cond_string) \
     som_solib_create_catch_load_hook (pid, tempflag, filename, cond_string)
  
  extern void som_solib_create_catch_load_hook (int, int, char *, char *);
--- 65,71 ----
     the debugger to be notified by the dynamic linker when a specified
     library file (or any library file, if filename is NULL) is loaded.
   */
! #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid, tempflag, filename, cond_string) \
     som_solib_create_catch_load_hook (pid, tempflag, filename, cond_string)
  
  extern void som_solib_create_catch_load_hook (int, int, char *, char *);
*************** extern void som_solib_create_catch_load_
*** 74,80 ****
     the debugger to be notified by the dynamic linker when a specified
     library file (or any library file, if filename is NULL) is unloaded.
   */
! #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename, cond_string) \
     som_solib_create_catch_unload_hook (pid, tempflag, filename, cond_string)
  
  extern void som_solib_create_catch_unload_hook (int, int, char *, char *);
--- 74,80 ----
     the debugger to be notified by the dynamic linker when a specified
     library file (or any library file, if filename is NULL) is unloaded.
   */
! #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \
     som_solib_create_catch_unload_hook (pid, tempflag, filename, cond_string)
  
  extern void som_solib_create_catch_unload_hook (int, int, char *, char *);
*************** extern int som_solib_have_load_event (in
*** 96,105 ****
     This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
     or undefined results are guaranteed.
  
!    This string's contents are only valid immediately after the inferior
!    has stopped in the dynamic linker hook, and becomes invalid as soon
!    as the inferior is continued.  Clients should make a copy of this
!    string if they wish to continue the inferior and then access the string.
   */
  #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) \
     som_solib_loaded_library_pathname (pid)
--- 96,106 ----
     This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
     or undefined results are guaranteed.
  
!    This string's contents are only valid immediately after the
!    inferior has stopped in the dynamic linker hook, and becomes
!    invalid as soon as the inferior is continued.  Clients should make
!    a copy of this string if they wish to continue the inferior and
!    then access the string.
   */
  #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) \
     som_solib_loaded_library_pathname (pid)
*************** extern int som_solib_have_unload_event (
*** 123,132 ****
     This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is TRUE,
     or undefined results are guaranteed.
  
!    This string's contents are only valid immediately after the inferior
!    has stopped in the dynamic linker hook, and becomes invalid as soon
!    as the inferior is continued.  Clients should make a copy of this
!    string if they wish to continue the inferior and then access the string.
   */
  #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) \
     som_solib_unloaded_library_pathname (pid)
--- 124,134 ----
     This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is TRUE,
     or undefined results are guaranteed.
  
!    This string's contents are only valid immediately after the
!    inferior has stopped in the dynamic linker hook, and becomes
!    invalid as soon as the inferior is continued.  Clients should make
!    a copy of this string if they wish to continue the inferior and
!    then access the string.
   */
  #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) \
     som_solib_unloaded_library_pathname (pid)
*************** extern char *som_solib_unloaded_library_
*** 137,145 ****
     lies within the dynamic linker (such as the event hook, or the dld
     itself).
  
!    This function must be used only when a dynamic linker event has been
!    caught, and the inferior is being stepped out of the hook, or undefined
!    results are guaranteed.
   */
  #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) \
     som_solib_in_dynamic_linker (pid, pc)
--- 139,147 ----
     lies within the dynamic linker (such as the event hook, or the dld
     itself).
  
!    This function must be used only when a dynamic linker event has
!    been caught, and the inferior is being stepped out of the hook, or
!    undefined results are guaranteed.
   */
  #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) \
     som_solib_in_dynamic_linker (pid, pc)

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