This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH] print_it_typical
- From: Nick Roberts <nickrob at snap dot net dot nz>
- To: gdb-patches at sourceware dot org
- Date: Fri, 2 Jun 2006 15:46:28 +1200
- Subject: [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;