* breakpoint.c (bpstat_what): Give step-resume higher priority than

shlib events.
This commit is contained in:
Daniel Jacobowitz
2007-04-13 13:33:10 +00:00
parent d3169d93f7
commit 46d570866d
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2007-04-13 Daniel Jacobowitz <dan@codesourcery.com>
* breakpoint.c (bpstat_what): Give step-resume higher priority than
shlib events.
2007-04-13 Daniel Jacobowitz <dan@codesourcery.com> 2007-04-13 Daniel Jacobowitz <dan@codesourcery.com>
* infrun.c: Doc fixes. * infrun.c: Doc fixes.

View File

@ -3120,10 +3120,10 @@ bpstat_what (bpstat bs)
clrs < err shl shlr sn sr ss ts clrs < err shl shlr sn sr ss ts
ss < shl shlr sn sr ts ss < shl shlr sn sr ts
sn < shl shlr sr ts sn < shl shlr sr ts
sr < shl shlr ts shl < shlr sr
shl < shlr shlr < sr
sr < ts
ts < ts <
shlr <
What I think this means is that we don't need a damned table What I think this means is that we don't need a damned table
here. If you just put the rows and columns in the right order, here. If you just put the rows and columns in the right order,
@ -3160,13 +3160,13 @@ bpstat_what (bpstat bs)
/*long_resume */ /*long_resume */
{clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr}, {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr},
/*step_resume */ /*step_resume */
{sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr}, {sr, sr, sr, sr, sr, sr, sr, sr, ts, sr, sr},
/*through_sig */ /*through_sig */
{ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr}, {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr},
/*shlib */ /*shlib */
{shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr}, {shl, shl, shl, shl, shl, shl, shl, sr, ts, shl, shlr},
/*catch_shlib */ /*catch_shlib */
{shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr} {shlr, shlr, shlr, shlr, shlr, shlr, shlr, sr, ts, shlr, shlr}
}; };
#undef kc #undef kc