diff options
author | Fred Fish <fnf@specifix.com> | 2007-02-08 16:18:56 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2007-02-08 16:18:56 +0000 |
commit | 79da184e3fbc01d095fed1c0a09929e0aa83a6c0 (patch) | |
tree | aed720806d85f9260328077099e0271d031f4deb /gdb/utils.c | |
parent | b69733abb737afe5bc3b63bc57ccf86d3d479ef6 (diff) | |
download | gdb-79da184e3fbc01d095fed1c0a09929e0aa83a6c0.zip gdb-79da184e3fbc01d095fed1c0a09929e0aa83a6c0.tar.gz gdb-79da184e3fbc01d095fed1c0a09929e0aa83a6c0.tar.bz2 |
Reviewed and approved by Daniel Jacobowitz <drow@false.org>
2007-02-08 Fred Fish <fnf@specifix.com>
* defs.h (request_quit): Remove declaration.
* utils.c (request_quit): Remove definition.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index 4d90812..8d9a938 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -906,18 +906,6 @@ quit (void) #endif } -/* Control C comes here */ -void -request_quit (int signo) -{ - quit_flag = 1; - /* Restore the signal handler. Harmless with BSD-style signals, - needed for System V-style signals. */ - signal (signo, request_quit); - - if (immediate_quit) - quit (); -} /* Called when a memory allocation fails, with the number of bytes of memory requested in SIZE. */ |