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


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

	* utils.c: Whitespace tweaks.

Index: utils.c
===================================================================
RCS file: /cvs/src/src/gdb/utils.c,v
retrieving revision 1.142
diff -p -r1.142 utils.c
*** utils.c	14 Jan 2005 01:20:36 -0000	1.142
--- utils.c	14 Jan 2005 04:00:48 -0000
*************** add_continuation (void (*continuation_ho
*** 459,465 ****
     before we have a chance of exhausting those that were already
     there. We need to then save the beginning of the list in a pointer
     and do the continuations from there on, instead of using the
!    global beginning of list as our iteration pointer.*/
  void
  do_all_continuations (void)
  {
--- 459,465 ----
     before we have a chance of exhausting those that were already
     there. We need to then save the beginning of the list in a pointer
     and do the continuations from there on, instead of using the
!    global beginning of list as our iteration pointer.  */
  void
  do_all_continuations (void)
  {
*************** do_all_continuations (void)
*** 473,479 ****
    continuation_ptr = cmd_continuation;
    cmd_continuation = NULL;
  
!   /* Work now on the list we have set aside. */
    while (continuation_ptr)
      {
        (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
--- 473,479 ----
    continuation_ptr = cmd_continuation;
    cmd_continuation = NULL;
  
!   /* Work now on the list we have set aside.  */
    while (continuation_ptr)
      {
        (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
*************** discard_all_continuations (void)
*** 499,505 ****
  }
  
  /* Add a continuation to the continuation list, the global list
!    intermediate_continuation. The new continuation will be added at the front.*/
  void
  add_intermediate_continuation (void (*continuation_hook)
  			       (struct continuation_arg *),
--- 499,506 ----
  }
  
  /* Add a continuation to the continuation list, the global list
!    intermediate_continuation.  The new continuation will be added at
!    the front.  */
  void
  add_intermediate_continuation (void (*continuation_hook)
  			       (struct continuation_arg *),
*************** do_all_intermediate_continuations (void)
*** 536,542 ****
    continuation_ptr = intermediate_continuation;
    intermediate_continuation = NULL;
  
!   /* Work now on the list we have set aside. */
    while (continuation_ptr)
      {
        (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
--- 537,543 ----
    continuation_ptr = intermediate_continuation;
    intermediate_continuation = NULL;
  
!   /* Work now on the list we have set aside.  */
    while (continuation_ptr)
      {
        (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);

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