diff options
author | Tom Tromey <tom@tromey.com> | 2020-04-13 12:42:59 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2020-04-13 14:10:04 -0600 |
commit | 29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013 (patch) | |
tree | 5b9cb1bbc9c5b6a5639423e69e67d0554a34f0c2 /gdb | |
parent | 98029d02d7238c75df42030b819e7961c8aacb18 (diff) | |
download | gdb-29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013.zip gdb-29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013.tar.gz gdb-29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013.tar.bz2 |
Use warning in event-loop
Change event-loop.c to avoid printf_unfiltered in favor of warning.
warning is aleady available to code in gdbsupport/.
gdb/ChangeLog
2020-04-13 Tom Tromey <tom@tromey.com>
* event-loop.c (handle_file_event): Use warning, not
printf_unfiltered.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/event-loop.c | 11 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 508a551..d4facee 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2020-04-13 Tom Tromey <tom@tromey.com> + * event-loop.c (handle_file_event): Use warning, not + printf_unfiltered. + +2020-04-13 Tom Tromey <tom@tromey.com> + * event-loop.c: Include <chrono>. 2020-04-13 Tom Tromey <tom@tromey.com> diff --git a/gdb/event-loop.c b/gdb/event-loop.c index 880fc30..a5d2f6f 100644 --- a/gdb/event-loop.c +++ b/gdb/event-loop.c @@ -616,11 +616,10 @@ handle_file_event (file_handler *file_ptr, int ready_mask) /* Work in progress. We may need to tell somebody what kind of error we had. */ if (mask & POLLERR) - printf_unfiltered (_("Error detected on fd %d\n"), - file_ptr->fd); + warning (_("Error detected on fd %d"), file_ptr->fd); if (mask & POLLNVAL) - printf_unfiltered (_("Invalid or non-`poll'able fd %d\n"), - file_ptr->fd); + warning (_("Invalid or non-`poll'able fd %d"), + file_ptr->fd); file_ptr->error = 1; } else @@ -634,8 +633,8 @@ handle_file_event (file_handler *file_ptr, int ready_mask) { if (ready_mask & GDB_EXCEPTION) { - printf_unfiltered (_("Exception condition detected " - "on fd %d\n"), file_ptr->fd); + warning (_("Exception condition detected on fd %d"), + file_ptr->fd); file_ptr->error = 1; } else |