diff options
author | Joel Brobecker <brobecker@gnat.com> | 2004-08-10 05:42:22 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2004-08-10 05:42:22 +0000 |
commit | 1f011ce276fd4fb33c485e25354eaa4bb96e6662 (patch) | |
tree | 40fb5c0855a405283f5a0a1fd7fa8c66ad9a6929 /gdb | |
parent | 9093fb01b2afdbde927b048e9aea5ee811a781a3 (diff) | |
download | gdb-1f011ce276fd4fb33c485e25354eaa4bb96e6662.zip gdb-1f011ce276fd4fb33c485e25354eaa4bb96e6662.tar.gz gdb-1f011ce276fd4fb33c485e25354eaa4bb96e6662.tar.bz2 |
General cleanup of the AIX xm include file:
* config/xm-aix4.h (fd_set): Remove undefine.
Remove include of <sys/select.h>.
(HAVE_TERMIO): Remove define.
(USG): Likewise.
(NULL): Remove redefine.
(alloca): Remove #pragma.
(vfork): Remove define.
(termdef): Remove.
(SIGWINCH_HANDLER): Remove.
(SIGWINCH_HANDLER_BODY): Remove.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 14 | ||||
-rw-r--r-- | gdb/config/xm-aix4.h | 62 |
2 files changed, 14 insertions, 62 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 542ce2c..6bb50ba 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,17 @@ +2004-08-09 Joel Brobecker <brobecker@gnat.com> + + General cleanup of the AIX xm include file: + * config/xm-aix4.h (fd_set): Remove undefine. + Remove include of <sys/select.h>. + (HAVE_TERMIO): Remove define. + (USG): Likewise. + (NULL): Remove redefine. + (alloca): Remove #pragma. + (vfork): Remove define. + (termdef): Remove. + (SIGWINCH_HANDLER): Remove. + (SIGWINCH_HANDLER_BODY): Remove. + 2004-08-09 Mark Kettenis <kettenis@gnu.org> * configure.tgt (x86_64-*-openbsd*): Set gdb_osabi to diff --git a/gdb/config/xm-aix4.h b/gdb/config/xm-aix4.h index bea086a..eb11233 100644 --- a/gdb/config/xm-aix4.h +++ b/gdb/config/xm-aix4.h @@ -20,27 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* The following text is taken from config/rs6000.mh: - * # The IBM version of /usr/include/rpc/rpc.h has a bug -- it says - * # `extern fd_set svc_fdset;' without ever defining the type fd_set. - * # Unfortunately this occurs in the vx-share code, which is not configured - * # like the rest of GDB (e.g. it doesn't include "defs.h"). - * # We circumvent this bug by #define-ing fd_set here, but undefining it in - * # the xm-rs6000.h file before ordinary modules try to use it. FIXME, IBM! - * MH_CFLAGS='-Dfd_set=int' - * So, here we do the undefine...which has to occur before we include - * <sys/select.h> below. - */ -#undef fd_set - -#include <sys/select.h> - -/* At least as of AIX 3.2, we have termios. */ -#define HAVE_TERMIOS 1 -/* #define HAVE_TERMIO 1 */ - -#define USG 1 - #define FIVE_ARG_PTRACE /* This system requires that we open a terminal with O_NOCTTY for it to @@ -48,44 +27,3 @@ #define USE_O_NOCTTY -/* Brain death inherited from PC's pervades. */ -#undef NULL -#define NULL 0 - -/* The IBM compiler requires this in order to properly compile alloca(). */ -#pragma alloca - -/* There is no vfork. */ - -#define vfork fork - -char *termdef (); - -/* Signal handler for SIGWINCH `window size changed'. */ - -#define SIGWINCH_HANDLER aix_resizewindow -extern void aix_resizewindow (int); - -/* `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 appropriately. */ \ - \ -void \ -aix_resizewindow (signo) \ - int signo; \ -{ \ - 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; \ - } \ -} |