diff options
author | John Gilmore <gnu@cygnus> | 1993-02-02 01:53:17 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1993-02-02 01:53:17 +0000 |
commit | 6edd74aef3d552b3498ec7fb3fc307c250e22cd9 (patch) | |
tree | 8186e29af0105c9fe3bc2b8b2789c3f26c0cd844 /gdb/tm-rs6000.h | |
parent | 118a1e4d1e4f6fb0a80573d0433d4f24dbfa0605 (diff) | |
download | gdb-6edd74aef3d552b3498ec7fb3fc307c250e22cd9.zip gdb-6edd74aef3d552b3498ec7fb3fc307c250e22cd9.tar.gz gdb-6edd74aef3d552b3498ec7fb3fc307c250e22cd9.tar.bz2 |
* hp300ux-nat.c: Update copyrights.
* mipsread.c (parse_partial_symbols): Complain about block
indexes that go backwards. Fix from Peter Schauer.
* symfile.c (syms_from_objfile, symbol_file_add): Allow a
symbol-file that has no linkage symbols to be read.
* tm-rs6000.h, xm-rs6000.h: (SIGWINCH_HANDLER and friends): Move
from tm- file to xm-file, since they're host dependent.
* valarith.c (value_binop): Typo.
Diffstat (limited to 'gdb/tm-rs6000.h')
-rw-r--r-- | gdb/tm-rs6000.h | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/gdb/tm-rs6000.h b/gdb/tm-rs6000.h index 5dff65c..3d8e64e 100644 --- a/gdb/tm-rs6000.h +++ b/gdb/tm-rs6000.h @@ -1,5 +1,5 @@ /* Parameters for target execution on an RS6000, for GDB, the GNU debugger. - Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc. + Copyright 1986, 1987, 1989, 1991, 1992, 1993 Free Software Foundation, Inc. Contributed by IBM Corporation. This file is part of GDB. @@ -584,36 +584,6 @@ extern unsigned int rs6000_struct_return_address; #define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, using_gcc) \ fix_call_dummy(dummyname, pc, fun, nargs, type) - -/* Signal handler for SIGWINCH `window size changed'. */ - -#define SIGWINCH_HANDLER aix_resizewindow -extern void aix_resizewindow (); - -/* `lines_per_page' and `chars_per_line' are local to utils.c. Rectify this. */ - -#define SIGWINCH_HANDLER_BODY \ - \ -/* Respond to SIGWINCH `window size changed' signal, and reset GDB's \ - window settings approproatelt. */ \ - \ -void \ -aix_resizewindow () \ -{ \ - int fd = fileno (stdout); \ - if (isatty (fd)) { \ - int val; \ - \ - val = atoi (termdef (fd, 'l')); \ - if (val > 0) \ - lines_per_page = val; \ - val = atoi (termdef (fd, 'c')); \ - if (val > 0) \ - chars_per_line = val; \ - } \ -} - - /* Flag for machine-specific stuff in shared files. FIXME */ #define IBM6000_TARGET |