This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Delete enum inferior_event_handler::INF_TIMER


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=cfe7570334fc9aefc64bdb0791fec03a736f2851

commit cfe7570334fc9aefc64bdb0791fec03a736f2851
Author: Pedro Alves <palves@redhat.com>
Date:   Wed Sep 9 18:23:25 2015 +0100

    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.

Diff:
---
 gdb/ChangeLog  | 5 +++++
 gdb/inf-loop.c | 1 -
 gdb/target.h   | 2 --
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 380ff65..85d8bc2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 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.
+
+2015-09-09  Pedro Alves  <palves@redhat.com>
+
 	* continuations.c (add_continuation, restore_thread_cleanup)
 	(do_all_continuations_ptid, do_all_continuations_thread_callback)
 	(do_all_continuations_thread, do_all_continuations)
diff --git a/gdb/inf-loop.c b/gdb/inf-loop.c
index 8aecfe6..aac936f 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;
diff --git a/gdb/target.h b/gdb/target.h
index 597a619..da18f99 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -122,8 +122,6 @@ enum inferior_event_type
     /* Process a normal inferior event which will result in target_wait
        being called.  */
     INF_REG_EVENT,
-    /* We are called because a timer went off.  */
-    INF_TIMER,
     /* We are called to do stuff after the inferior stops.  */
     INF_EXEC_COMPLETE,
   };


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]