* infrun.c (handle_inferior_event): Fixed typos in printf.

This commit is contained in:
Daniel Jacobowitz 2006-07-12 20:43:52 +00:00
parent 6765f3e5d0
commit 8802d8ed3a
2 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2006-07-12 Jan Kratochvil <lace@jankratochvil.net>
* infrun.c (handle_inferior_event): Fixed typos in printf.
2006-07-12 Daniel Jacobowitz <dan@codesourcery.com> 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
Nathan Sidwell <nathan@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com>

View File

@ -2022,7 +2022,7 @@ process_event_stop_test:
duration of this command. Then, install a temporary duration of this command. Then, install a temporary
breakpoint at the target of the jmp_buf. */ breakpoint at the target of the jmp_buf. */
if (debug_infrun) if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTATE_WHAT_SET_LONGJMP_RESUME\n"); fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
disable_longjmp_breakpoint (); disable_longjmp_breakpoint ();
remove_breakpoints (); remove_breakpoints ();
breakpoints_inserted = 0; breakpoints_inserted = 0;
@ -2047,7 +2047,7 @@ process_event_stop_test:
case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME: case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE: case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
if (debug_infrun) if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTATE_WHAT_CLEAR_LONGJMP_RESUME\n"); fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
remove_breakpoints (); remove_breakpoints ();
breakpoints_inserted = 0; breakpoints_inserted = 0;
disable_longjmp_breakpoint (); disable_longjmp_breakpoint ();
@ -2058,7 +2058,7 @@ process_event_stop_test:
case BPSTAT_WHAT_SINGLE: case BPSTAT_WHAT_SINGLE:
if (debug_infrun) if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTATE_WHAT_SINGLE\n"); fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
if (breakpoints_inserted) if (breakpoints_inserted)
{ {
remove_breakpoints (); remove_breakpoints ();
@ -2071,7 +2071,7 @@ process_event_stop_test:
case BPSTAT_WHAT_STOP_NOISY: case BPSTAT_WHAT_STOP_NOISY:
if (debug_infrun) if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTATE_WHAT_STOP_NOISY\n"); fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
stop_print_frame = 1; stop_print_frame = 1;
/* We are about to nuke the step_resume_breakpointt via the /* We are about to nuke the step_resume_breakpointt via the
@ -2082,7 +2082,7 @@ process_event_stop_test:
case BPSTAT_WHAT_STOP_SILENT: case BPSTAT_WHAT_STOP_SILENT:
if (debug_infrun) if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTATE_WHAT_STOP_SILENT\n"); fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
stop_print_frame = 0; stop_print_frame = 0;
/* We are about to nuke the step_resume_breakpoin via the /* We are about to nuke the step_resume_breakpoin via the
@ -2110,7 +2110,7 @@ process_event_stop_test:
the one deleted is the one currently stopped at. MVS */ the one deleted is the one currently stopped at. MVS */
if (debug_infrun) if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTATE_WHAT_STEP_RESUME\n"); fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
if (step_resume_breakpoint == NULL) if (step_resume_breakpoint == NULL)
{ {
@ -2134,7 +2134,7 @@ process_event_stop_test:
case BPSTAT_WHAT_THROUGH_SIGTRAMP: case BPSTAT_WHAT_THROUGH_SIGTRAMP:
if (debug_infrun) if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTATE_WHAT_THROUGH_SIGTRAMP\n"); fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_THROUGH_SIGTRAMP\n");
/* If were waiting for a trap, hitting the step_resume_break /* If were waiting for a trap, hitting the step_resume_break
doesn't count as getting it. */ doesn't count as getting it. */
if (trap_expected) if (trap_expected)
@ -2145,7 +2145,7 @@ process_event_stop_test:
case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK: case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK:
{ {
if (debug_infrun) if (debug_infrun)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTATE_WHAT_CHECK_SHLIBS\n"); fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_CHECK_SHLIBS\n");
/* Remove breakpoints, we eventually want to step over the /* Remove breakpoints, we eventually want to step over the
shlib event breakpoint, and SOLIB_ADD might adjust shlib event breakpoint, and SOLIB_ADD might adjust
breakpoint addresses via breakpoint_re_set. */ breakpoint addresses via breakpoint_re_set. */