This is the mail archive of the gdb-patches@sourceware.org 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]

[PATCH] print_it_typical


2006-06-02  Nick Roberts  <nickrob@snap.net.nz>

	* breakpoint.c (print_it_typical): Use EXEC_ASYNC_LOCATION_REACHED.

Committed as obvious.

-- 
Nick                                           http://www.inet.net.nz/~nickrob

*** /home/nickrob/src/gdb/breakpoint.c.~1.226~	2006-06-02 15:45:23.000000000 +1200
--- /home/nickrob/src/gdb/breakpoint.c	2006-06-02 15:31:32.000000000 +1200
*************** print_it_typical (bpstat bs)
*** 2328,2334 ****
  
      case bp_until:
        if (ui_out_is_mi_like_p (uiout))
! 	ui_out_field_string (uiout, "reason", "location-reached");
        return PRINT_UNKNOWN;
        break;
  
--- 2328,2336 ----
  
      case bp_until:
        if (ui_out_is_mi_like_p (uiout))
! 	ui_out_field_string
! 	  (uiout, "reason",
! 	   async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
        return PRINT_UNKNOWN;
        break;


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