diff options
author | Tom Tromey <tromey@redhat.com> | 2012-08-22 17:31:45 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-08-22 17:31:45 +0000 |
commit | b583003e103cc0a55ff90a414045a3f647ab1a6e (patch) | |
tree | d96a9615779b9e4b6dc669f1c79bde5e1a2bd3a5 /gdb/utils.c | |
parent | e1507e953ec06f50f83f0bbc2b50a7f3b11f4022 (diff) | |
download | gdb-b583003e103cc0a55ff90a414045a3f647ab1a6e.zip gdb-b583003e103cc0a55ff90a414045a3f647ab1a6e.tar.gz gdb-b583003e103cc0a55ff90a414045a3f647ab1a6e.tar.bz2 |
* event-top.c (sigwinch_token, handle_sigwinch): Remove.
(async_init_signals): Update.
* utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
(SIGWINCH_HANDLER_BODY): Remove.
gdb/doc
* gdbint.texinfo (Host Definition): Remove documentation for
SIGWINCH_HANDLER and SIGWINCH_HANDLER_BODY.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index 607d7bc..b9e76ab 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1714,11 +1714,6 @@ init_page_info (void) lines_per_page = UINT_MAX; } - /* FIXME: Get rid of this junk. */ -#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER) - SIGWINCH_HANDLER (SIGWINCH); -#endif - /* If the output is not a terminal, don't paginate it. */ if (!ui_file_isatty (gdb_stdout)) lines_per_page = UINT_MAX; @@ -2743,11 +2738,6 @@ When set, debugging messages will be marked with seconds and microseconds."), &setdebuglist, &showdebuglist); } -/* Machine specific function to handle SIGWINCH signal. */ - -#ifdef SIGWINCH_HANDLER_BODY -SIGWINCH_HANDLER_BODY -#endif /* Print routines to handle variable size regs, etc. */ /* Temporary storage using circular buffer. */ #define NUMCELLS 16 |