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] Removed unused declaration


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

commit b4a7c699688bd88313893cbb59ee0df5b8cd009b
Author: Tom Tromey <tom@tromey.com>
Date:   Sat Sep 23 14:00:21 2017 -0600

    Removed unused declaration
    
    An earlier patch of mine removed make_cleanup_override_quit_handler,
    but neglected to remove the declaration.  This patch removes it.
    Tested by rebuilding.  I'm committing this as obvious.
    
    ChangeLog
    2017-09-23  Tom Tromey  <tom@tromey.com>
    
    	* defs.h (make_cleanup_override_quit_handler): Don't declare.

Diff:
---
 gdb/ChangeLog | 4 ++++
 gdb/defs.h    | 6 ------
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index aa50dc9..910580d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2017-09-23  Tom Tromey  <tom@tromey.com>
+
+	* defs.h (make_cleanup_override_quit_handler): Don't declare.
+
 2017-09-22  Tom Tromey  <tom@tromey.com>
 
 	* utils.c (class scoped_input_handler) <m_quit_handler>: Change
diff --git a/gdb/defs.h b/gdb/defs.h
index af9e32e..077a816 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -155,12 +155,6 @@ extern void set_quit_flag (void);
 typedef void (quit_handler_ftype) (void);
 extern quit_handler_ftype *quit_handler;
 
-/* Override the current quit handler.  Sets NEW_QUIT_HANDLER as
-   current quit handler, and installs a cleanup that when run restores
-   the previous quit handler.  */
-struct cleanup *
-  make_cleanup_override_quit_handler (quit_handler_ftype *new_quit_handler);
-
 /* The default quit handler.  Checks whether Ctrl-C was pressed, and
    if so:


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