diff options
author | 2015-09-09 18:23:25 +0100 | |
---|---|---|
committer | 2015-09-09 18:25:55 +0100 | |
commit | cfe7570334fc9aefc64bdb0791fec03a736f2851 (patch) | |
tree | d39741ecc834b808dfd796582476c769706bcc90 /gdb/inf-loop.c | |
parent | Garbage collect thread continuations (diff) | |
download | binutils-gdb-cfe7570334fc9aefc64bdb0791fec03a736f2851.tar.gz binutils-gdb-cfe7570334fc9aefc64bdb0791fec03a736f2851.tar.bz2 binutils-gdb-cfe7570334fc9aefc64bdb0791fec03a736f2851.zip |
Delete enum inferior_event_handler::INF_TIMER
Nothing ever uses this.
gdb/ChangeLog:
2015-09-09 Pedro Alves <palves@redhat.com>
* inf-loop.c (inferior_event_handler): Delete INF_TIMER case.
* target.h (enum inferior_event_type) <INF_TIMER>: Delete.
Diffstat (limited to 'gdb/inf-loop.c')
-rw-r--r-- | gdb/inf-loop.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/inf-loop.c b/gdb/inf-loop.c index 8aecfe6af50..aac936f374b 100644 --- a/gdb/inf-loop.c +++ b/gdb/inf-loop.c @@ -80,7 +80,6 @@ inferior_event_handler (enum inferior_event_type event_type, } break; - case INF_TIMER: default: printf_unfiltered (_("Event type not recognized.\n")); break; |