diff options
author | Daniel Jacobowitz <drow@false.org> | 2008-07-27 21:12:40 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2008-07-27 21:12:40 +0000 |
commit | 57380f4e0bbdfa396ed068db6bd867b4fafd9925 (patch) | |
tree | c55eb8d7d1ab1052274749c38291df076a980cb2 /gdb/ChangeLog | |
parent | e09490f18a66aa4d02a2f5b7a75d2530caf09d5b (diff) | |
download | gdb-57380f4e0bbdfa396ed068db6bd867b4fafd9925.zip gdb-57380f4e0bbdfa396ed068db6bd867b4fafd9925.tar.gz gdb-57380f4e0bbdfa396ed068db6bd867b4fafd9925.tar.bz2 |
* linux-nat.c (resume_callback): Add more debugging output.
(linux_nat_has_pending_sigint): New function, based on
linux_nat_has_pending.
(set_ignore_sigint, maybe_clear_ignore_sigint): New functions.
(stop_wait_callback): Remove flush_mask handling. Honor
ignore_sigint. Call maybe_clear_ignore_sigint. Pass NULL
to recursive calls.
(linux_nat_has_pending, flush_callback): Remove.
(linux_nat_filter_event): Check for ignore_sigint.
(linux_nat_wait): Remove flush_mask support and call to
flush_callback. Use set_ignore_sigint and maybe_clear_ignore_sigint.
* linux-nat.h (struct lwp_info): Add ignore_sigint field.
* gdb.threads/manythreads.exp: Use remote_expect instead of after.
Add a test for duplicated SIGINTs.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7cc48ef..3dce7a7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,20 @@ 2008-07-27 Daniel Jacobowitz <dan@codesourcery.com> + * linux-nat.c (resume_callback): Add more debugging output. + (linux_nat_has_pending_sigint): New function, based on + linux_nat_has_pending. + (set_ignore_sigint, maybe_clear_ignore_sigint): New functions. + (stop_wait_callback): Remove flush_mask handling. Honor + ignore_sigint. Call maybe_clear_ignore_sigint. Pass NULL + to recursive calls. + (linux_nat_has_pending, flush_callback): Remove. + (linux_nat_filter_event): Check for ignore_sigint. + (linux_nat_wait): Remove flush_mask support and call to + flush_callback. Use set_ignore_sigint and maybe_clear_ignore_sigint. + * linux-nat.h (struct lwp_info): Add ignore_sigint field. + +2008-07-27 Daniel Jacobowitz <dan@codesourcery.com> + * linux-nat.c (count_events_callback, select_event_lwp_callback): Only report events from resumed threads. |