summaryrefslogtreecommitdiff
path: root/gdb/event-loop.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2000-02-21 15:56:37 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2000-02-21 15:56:37 +0000
commit9e7011b969869660435cea79a338c121f96d0e94 (patch)
tree689f2d5b84912afd69effddb4bb2efd8f59d2488 /gdb/event-loop.c
parentae867a287c8e0c57a109eef0775e6ff30e56a22c (diff)
downloadgdb-9e7011b969869660435cea79a338c121f96d0e94.tar.gz
2000-02-21 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
From Philippe De Muyter <phdm@macqel.be> * event-loop.c (handle_file_event): In case of poll, enable printing of informational message if an error/exception is detected on the file descriptor.
Diffstat (limited to 'gdb/event-loop.c')
-rw-r--r--gdb/event-loop.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/event-loop.c b/gdb/event-loop.c
index 191515634b1..dd849dfb8ff 100644
--- a/gdb/event-loop.c
+++ b/gdb/event-loop.c
@@ -697,12 +697,12 @@ handle_file_event (int event_file_desc)
{
/* Work in progress. We may need to tell somebody what
kind of error we had. */
- /*if (error_mask_returned & POLLHUP)
- printf_unfiltered ("Hangup detected on fd %d\n", file_ptr->fd);
- if (error_mask_returned & POLLERR)
- printf_unfiltered ("Error detected on fd %d\n", file_ptr->fd);
- if (error_mask_returned & POLLNVAL)
- printf_unfiltered ("Invalid fd %d\n", file_ptr->fd); */
+ if (error_mask_returned & POLLHUP)
+ printf_unfiltered ("Hangup detected on fd %d\n", file_ptr->fd);
+ if (error_mask_returned & POLLERR)
+ printf_unfiltered ("Error detected on fd %d\n", file_ptr->fd);
+ if (error_mask_returned & POLLNVAL)
+ printf_unfiltered ("Invalid or non-`poll'able fd %d\n", file_ptr->fd);
file_ptr->error = 1;
}
else