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] gdb-events, whitespace tweaks


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

	* gdb-events[.c, .h, .sh]: Whitespace tweaks.

Index: gdb-events.c
===================================================================
RCS file: /cvs/src/src/gdb/gdb-events.c,v
retrieving revision 1.17
diff -p -r1.17 gdb-events.c
*** gdb-events.c	26 Jul 2004 14:53:00 -0000	1.17
--- gdb-events.c	14 Jan 2005 00:13:51 -0000
***************
*** 18,24 ****
  
     You should have received a copy of the GNU General Public License
     along with this program; if not, write to the Free Software
!    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  /* Work in progress */
  
--- 18,25 ----
  
     You should have received a copy of the GNU General Public License
     along with this program; if not, write to the Free Software
!    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
!    USA.  */
  
  /* Work in progress */
  
***************
*** 32,38 ****
     If editing this file, please also run gdb-events.sh and merge any
     changes into that script. Conversely, when making sweeping changes
     to this file, modifying gdb-events.sh and using its output may
!    prove easier. */
  
  
  #include "defs.h"
--- 33,39 ----
     If editing this file, please also run gdb-events.sh and merge any
     changes into that script. Conversely, when making sweeping changes
     to this file, modifying gdb-events.sh and using its output may
!    prove easier.  */
  
  
  #include "defs.h"
*************** When non-zero, event/notify debugging is
*** 338,349 ****
    deprecate_cmd (deprecated_add_show_from_set (c, &showlist),
  		 "show debug event");
  
!   deprecated_add_show_from_set
!     (add_set_cmd ("event",
! 		  class_maintenance,
! 		  var_zinteger,
! 		  (char *) (&gdb_events_debug),
! 		  "Set event debugging.\n\
! When non-zero, event/notify debugging is enabled.", &setdebuglist),
!      &showdebuglist);
  }
--- 339,350 ----
    deprecate_cmd (deprecated_add_show_from_set (c, &showlist),
  		 "show debug event");
  
!   deprecated_add_show_from_set (add_set_cmd ("event",
! 					     class_maintenance,
! 					     var_zinteger,
! 					     (char *) (&gdb_events_debug),
! 					     "Set event debugging.\n\
! When non-zero, event/notify debugging is enabled.", 
! 					     &setdebuglist),
! 				&showdebuglist);
  }
Index: gdb-events.h
===================================================================
RCS file: /cvs/src/src/gdb/gdb-events.h,v
retrieving revision 1.15
diff -p -r1.15 gdb-events.h
*** gdb-events.h	26 Jun 2004 20:37:12 -0000	1.15
--- gdb-events.h	14 Jan 2005 00:13:51 -0000
***************
*** 44,52 ****
  
  
  
! /* Type definition of all hook functions.
!    Recommended pratice is to first declare each hook function using
!    the below ftype and then define it. */
  
  typedef void (gdb_events_breakpoint_create_ftype) (int b);
  typedef void (gdb_events_breakpoint_delete_ftype) (int b);
--- 44,52 ----
  
  
  
! /* Type definition of all hook functions.  Recommended pratice is to
!    first declare each hook function using the below ftype and then
!    define it.  */
  
  typedef void (gdb_events_breakpoint_create_ftype) (int b);
  typedef void (gdb_events_breakpoint_delete_ftype) (int b);
*************** struct gdb_events
*** 73,79 ****
  
  /* Interface into events functions.
     Where a *_p() predicate is present, it must be called before
!    calling the hook proper. */
  extern void breakpoint_create_event (int b);
  extern void breakpoint_delete_event (int b);
  extern void breakpoint_modify_event (int b);
--- 73,79 ----
  
  /* Interface into events functions.
     Where a *_p() predicate is present, it must be called before
!    calling the hook proper.  */
  extern void breakpoint_create_event (int b);
  extern void breakpoint_delete_event (int b);
  extern void breakpoint_modify_event (int b);
*************** extern void tracepoint_delete_event (int
*** 82,94 ****
  extern void tracepoint_modify_event (int number);
  extern void architecture_changed_event (void);
  
! /* Install custom gdb-events hooks. */
  extern struct gdb_events *deprecated_set_gdb_event_hooks (struct gdb_events *vector);
  
! /* Deliver any pending events. */
  extern void gdb_events_deliver (struct gdb_events *vector);
  
! /* Clear event handlers */
  extern void clear_gdb_event_hooks (void);
  
  #endif
--- 82,94 ----
  extern void tracepoint_modify_event (int number);
  extern void architecture_changed_event (void);
  
! /* Install custom gdb-events hooks.  */
  extern struct gdb_events *deprecated_set_gdb_event_hooks (struct gdb_events *vector);
  
! /* Deliver any pending events.  */
  extern void gdb_events_deliver (struct gdb_events *vector);
  
! /* Clear event handlers.  */
  extern void clear_gdb_event_hooks (void);
  
  #endif
Index: gdb-events.sh
===================================================================
RCS file: /cvs/src/src/gdb/gdb-events.sh,v
retrieving revision 1.21
diff -p -r1.21 gdb-events.sh
*** gdb-events.sh	26 Jul 2004 14:53:00 -0000	1.21
--- gdb-events.sh	14 Jan 2005 00:13:51 -0000
***************
*** 19,25 ****
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
! # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  
  IFS=:
  
--- 19,26 ----
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
! # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
! # USA.
  
  IFS=:
  
*************** copyright ()
*** 88,94 ****
     If editing this file, please also run gdb-events.sh and merge any
     changes into that script. Conversely, when making sweeping changes
     to this file, modifying gdb-events.sh and using its output may
!    prove easier. */
  
  EOF
  }
--- 89,95 ----
     If editing this file, please also run gdb-events.sh and merge any
     changes into that script. Conversely, when making sweeping changes
     to this file, modifying gdb-events.sh and using its output may
!    prove easier.  */
  
  EOF
  }
*************** done
*** 126,134 ****
  echo ""
  echo ""
  cat <<EOF
! /* Type definition of all hook functions.
!    Recommended pratice is to first declare each hook function using
!    the below ftype and then define it. */
  EOF
  echo ""
  function_list | while eval read $read
--- 127,135 ----
  echo ""
  echo ""
  cat <<EOF
! /* Type definition of all hook functions.  Recommended pratice is to
!    first declare each hook function using the below ftype and then
!    define it.  */
  EOF
  echo ""
  function_list | while eval read $read
*************** echo ""
*** 157,163 ****
  cat <<EOF
  /* Interface into events functions.
     Where a *_p() predicate is present, it must be called before
!    calling the hook proper. */
  EOF
  function_list | while eval read $read
  do
--- 158,164 ----
  cat <<EOF
  /* Interface into events functions.
     Where a *_p() predicate is present, it must be called before
!    calling the hook proper.  */
  EOF
  function_list | while eval read $read
  do
*************** done
*** 176,188 ****
  # our set function
  cat <<EOF
  
! /* Install custom gdb-events hooks. */
  extern struct gdb_events *deprecated_set_gdb_event_hooks (struct gdb_events *vector);
  
! /* Deliver any pending events. */
  extern void gdb_events_deliver (struct gdb_events *vector);
  
! /* Clear event handlers */
  extern void clear_gdb_event_hooks (void);
  EOF
  
--- 177,189 ----
  # our set function
  cat <<EOF
  
! /* Install custom gdb-events hooks.  */
  extern struct gdb_events *deprecated_set_gdb_event_hooks (struct gdb_events *vector);
  
! /* Deliver any pending events.  */
  extern void gdb_events_deliver (struct gdb_events *vector);
  
! /* Clear event handlers.  */
  extern void clear_gdb_event_hooks (void);
  EOF
  
*************** When non-zero, event/notify debugging is
*** 477,490 ****
    deprecate_cmd (deprecated_add_show_from_set (c, &showlist),
                   "show debug event");
  
!   deprecated_add_show_from_set
!     (add_set_cmd ("event",
! 	          class_maintenance,
! 		  var_zinteger,
! 		  (char *) (&gdb_events_debug),
! 		  "Set event debugging.\n\\
  When non-zero, event/notify debugging is enabled.", &setdebuglist),
!      &showdebuglist);
  }
  EOF
  
--- 478,490 ----
    deprecate_cmd (deprecated_add_show_from_set (c, &showlist),
                   "show debug event");
  
!   deprecated_add_show_from_set (add_set_cmd ("event",
! 					     class_maintenance,
! 					     var_zinteger,
! 					     (char *) (&gdb_events_debug),
! 					     "Set event debugging.\n\\
  When non-zero, event/notify debugging is enabled.", &setdebuglist),
! 				&showdebuglist);
  }
  EOF
  

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