]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/config/xm-aix4.h
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / config / xm-aix4.h
1 /* Parameters for hosting on an PowerPC, for GDB, the GNU debugger.
2 Copyright 1995, 1998 Free Software Foundation, Inc.
3 Contributed by Cygnus Corporation.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 /* The following text is taken from config/rs6000.mh:
22 * # The IBM version of /usr/include/rpc/rpc.h has a bug -- it says
23 * # `extern fd_set svc_fdset;' without ever defining the type fd_set.
24 * # Unfortunately this occurs in the vx-share code, which is not configured
25 * # like the rest of GDB (e.g. it doesn't include "defs.h").
26 * # We circumvent this bug by #define-ing fd_set here, but undefining it in
27 * # the xm-rs6000.h file before ordinary modules try to use it. FIXME, IBM!
28 * MH_CFLAGS='-Dfd_set=int'
29 * So, here we do the undefine...which has to occur before we include
30 * <sys/select.h> below.
31 */
32 #undef fd_set
33
34 #include <sys/select.h>
35
36 /* Big end is at the low address */
37
38 #define HOST_BYTE_ORDER BIG_ENDIAN
39
40 /* At least as of AIX 3.2, we have termios. */
41 #define HAVE_TERMIOS 1
42 /* #define HAVE_TERMIO 1 */
43
44 #define USG 1
45 #define HAVE_SIGSETMASK 1
46
47 #define FIVE_ARG_PTRACE
48
49 /* AIX declares the mem functions differently than defs.h does. AIX is
50 right, but defs.h works on more old systems. For now, override it. */
51
52 #define MEM_FNS_DECLARED 1
53
54 /* This system requires that we open a terminal with O_NOCTTY for it to
55 not become our controlling terminal. */
56
57 #define USE_O_NOCTTY
58
59 /* Brain death inherited from PC's pervades. */
60 #undef NULL
61 #define NULL 0
62
63 /* The IBM compiler requires this in order to properly compile alloca(). */
64 #pragma alloca
65
66 /* There is no vfork. */
67
68 #define vfork fork
69
70 char *termdef();
71
72 /* Signal handler for SIGWINCH `window size changed'. */
73
74 #define SIGWINCH_HANDLER aix_resizewindow
75 extern void aix_resizewindow PARAMS ((int));
76
77 /* `lines_per_page' and `chars_per_line' are local to utils.c. Rectify this. */
78
79 #define SIGWINCH_HANDLER_BODY \
80 \
81 /* Respond to SIGWINCH `window size changed' signal, and reset GDB's \
82 window settings appropriately. */ \
83 \
84 void \
85 aix_resizewindow (signo) \
86 int signo; \
87 { \
88 int fd = fileno (stdout); \
89 if (isatty (fd)) { \
90 int val; \
91 \
92 val = atoi (termdef (fd, 'l')); \
93 if (val > 0) \
94 lines_per_page = val; \
95 val = atoi (termdef (fd, 'c')); \
96 if (val > 0) \
97 chars_per_line = val; \
98 } \
99 }