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] interps.c whitespace


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

	* interps.c: Whitespace tweaks.

Index: interps.c
===================================================================
RCS file: /cvs/src/src/gdb/interps.c,v
retrieving revision 1.9
diff -p -r1.9 interps.c
*** interps.c	13 Jan 2005 02:35:37 -0000	1.9
--- interps.c	14 Jan 2005 00:52:33 -0000
*************** interp_set (struct interp *interp)
*** 178,184 ****
        interp->inited = 1;
      }
  
!   /* Clear out any installed interpreter hooks/event handlers. */
    clear_interpreter_hooks ();
  
    if (interp->procs->resume_proc != NULL
--- 178,184 ----
        interp->inited = 1;
      }
  
!   /* Clear out any installed interpreter hooks/event handlers.  */
    clear_interpreter_hooks ();
  
    if (interp->procs->resume_proc != NULL
*************** interp_exec (struct interp *interp, cons
*** 315,323 ****
    return exception_none;
  }
  
! /* A convenience routine that nulls out all the
!    common command hooks.  Use it when removing your interpreter in its 
!    suspend proc. */
  void
  clear_interpreter_hooks (void)
  {
--- 315,322 ----
    return exception_none;
  }
  
! /* A convenience routine that nulls out all the common command hooks.
!    Use it when removing your interpreter in its suspend proc.  */
  void
  clear_interpreter_hooks (void)
  {
*************** clear_interpreter_hooks (void)
*** 345,354 ****
    clear_gdb_event_hooks ();
  }
  
! /* This is a lazy init routine, called the first time
!    the interpreter module is used.  I put it here just in case, but I haven't
!    thought of a use for it yet.  I will probably bag it soon, since I don't
!    think it will be necessary. */
  static void
  initialize_interps (void)
  {
--- 344,353 ----
    clear_gdb_event_hooks ();
  }
  
! /* This is a lazy init routine, called the first time the interpreter
!    module is used.  I put it here just in case, but I haven't thought
!    of a use for it yet.  I will probably bag it soon, since I don't
!    think it will be necessary.  */
  static void
  initialize_interps (void)
  {

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