X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fbreak-catch-syscall.c;h=8d34173d76d4aeb31eefe163ee6dc28644651029;hb=112e8700a6fd2fed65ca70132c9cbed4132e8bd4;hp=a4df2ce36121e178b084cc8a92e1c508730c1ea2;hpb=ab55d1a098571a559bf75031e1c3e7c914afadd7;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/break-catch-syscall.c b/gdb/break-catch-syscall.c index a4df2ce361..8d34173d76 100644 --- a/gdb/break-catch-syscall.c +++ b/gdb/break-catch-syscall.c @@ -257,30 +257,30 @@ print_it_catch_syscall (bpstat bs) maybe_print_thread_hit_breakpoint (uiout); if (b->disposition == disp_del) - ui_out_text (uiout, "Temporary catchpoint "); + uiout->text ("Temporary catchpoint "); else - ui_out_text (uiout, "Catchpoint "); - if (ui_out_is_mi_like_p (uiout)) + uiout->text ("Catchpoint "); + if (uiout->is_mi_like_p ()) { - ui_out_field_string (uiout, "reason", + uiout->field_string ("reason", async_reason_lookup (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY ? EXEC_ASYNC_SYSCALL_ENTRY : EXEC_ASYNC_SYSCALL_RETURN)); - ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition)); + uiout->field_string ("disp", bpdisp_text (b->disposition)); } - ui_out_field_int (uiout, "bkptno", b->number); + uiout->field_int ("bkptno", b->number); if (last.kind == TARGET_WAITKIND_SYSCALL_ENTRY) - ui_out_text (uiout, " (call to syscall "); + uiout->text (" (call to syscall "); else - ui_out_text (uiout, " (returned from syscall "); + uiout->text (" (returned from syscall "); - if (s.name == NULL || ui_out_is_mi_like_p (uiout)) - ui_out_field_int (uiout, "syscall-number", last.value.syscall_number); + if (s.name == NULL || uiout->is_mi_like_p ()) + uiout->field_int ("syscall-number", last.value.syscall_number); if (s.name != NULL) - ui_out_field_string (uiout, "syscall-name", s.name); + uiout->field_string ("syscall-name", s.name); - ui_out_text (uiout, "), "); + uiout->text ("), "); return PRINT_SRC_AND_LOC; } @@ -302,14 +302,14 @@ print_one_catch_syscall (struct breakpoint *b, line up too nicely with the headers, but the effect is relatively readable). */ if (opts.addressprint) - ui_out_field_skip (uiout, "addr"); + uiout->field_skip ("addr"); annotate_field (5); if (c->syscalls_to_be_caught && VEC_length (int, c->syscalls_to_be_caught) > 1) - ui_out_text (uiout, "syscalls \""); + uiout->text ("syscalls \""); else - ui_out_text (uiout, "syscall \""); + uiout->text ("syscall \""); if (c->syscalls_to_be_caught) { @@ -336,14 +336,14 @@ print_one_catch_syscall (struct breakpoint *b, } /* Remove the last comma. */ text[strlen (text) - 2] = '\0'; - ui_out_field_string (uiout, "what", text); + uiout->field_string ("what", text); } else - ui_out_field_string (uiout, "what", ""); - ui_out_text (uiout, "\" "); + uiout->field_string ("what", ""); + uiout->text ("\" "); - if (ui_out_is_mi_like_p (uiout)) - ui_out_field_string (uiout, "catch-type", "syscall"); + if (uiout->is_mi_like_p ()) + uiout->field_string ("catch-type", "syscall"); } /* Implement the "print_mention" breakpoint_ops method for syscall