* gdb.texinfo (Remote Protocol): Document v and vCont.
[deliverable/binutils-gdb.git] / gdb / acconfig.h
CommitLineData
14abd0fb
MK
1/* Enable GNU extensions on systems that have them. */
2#ifndef _GNU_SOURCE
3# undef _GNU_SOURCE
4#endif
5
7dfa765c 6/* Define if your struct reg has r_fs. */
422ea4b8 7#undef HAVE_STRUCT_REG_R_FS
7dfa765c
MK
8
9/* Define if your struct reg has r_gs. */
422ea4b8 10#undef HAVE_STRUCT_REG_R_GS
7dfa765c 11
c906108c
SS
12/* Define if pstatus_t type is available */
13#undef HAVE_PSTATUS_T
14
15/* Define if prrun_t type is available */
16#undef HAVE_PRRUN_T
17
18/* Define if fpregset_t type is available. */
19#undef HAVE_FPREGSET_T
20
21/* Define if gregset_t type is available. */
22#undef HAVE_GREGSET_T
23
d84dd0c5
MK
24/* Define if <sys/procfs.h> has prgregset_t. */
25#undef HAVE_PRGREGSET_T
26
27/* Define if <sys/procfs.h> has prfpregset_t. */
28#undef HAVE_PRFPREGSET_T
29
30/* Define if <sys/procfs.h> has lwpid_t. */
31#undef HAVE_LWPID_T
32
33/* Define if <sys/procfs.h> has psaddr_t. */
34#undef HAVE_PSADDR_T
35
23e04971
MS
36/* Define if <sys/procfs.h> has prgregset32_t. */
37#undef HAVE_PRGREGSET32_T
38
39/* Define if <sys/procfs.h> has prfpregset32_t. */
40#undef HAVE_PRFPREGSET32_T
41
596c9d4b
KB
42/* Define if <sys/procfs.h> has prsysent_t */
43#undef HAVE_PRSYSENT_T
44
45/* Define if <sys/procfs.h> has pr_sigset_t */
46#undef HAVE_PR_SIGSET_T
47
48/* Define if <sys/procfs.h> has pr_sigaction64_t */
49#undef HAVE_PR_SIGACTION64_T
50
51/* Define if <sys/procfs.h> has pr_siginfo64_t */
52#undef HAVE_PR_SIGINFO64_T
53
d45fe813
KB
54/* Define if <link.h> exists and defines struct link_map which has
55 members with an ``l_'' prefix. (For Solaris, SVR4, and
56 SVR4-like systems.) */
57#undef HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS
58
59/* Define if <link.h> exists and defines struct link_map which has
60 members with an ``lm_'' prefix. (For SunOS.) */
61#undef HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS
62
63/* Define if <link.h> exists and defines a struct so_map which has
64 members with an ``som_'' prefix. (Found on older *BSD systems.) */
65#undef HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS
66
23e04971
MS
67/* Define if <sys/link.h> has struct link_map32 */
68#undef HAVE_STRUCT_LINK_MAP32
69
943c9c25
MS
70/* Define if <sys/link.h> has link_map32 (solaris sparc-64 target) */
71#undef _SYSCALL32
72
d84dd0c5
MK
73/* Define if the prfpregset_t type is broken. */
74#undef PRFPREGSET_T_BROKEN
75
c3f6f71d
JM
76/* Define if you want to use new multi-fd /proc interface
77 (replaces HAVE_MULTIPLE_PROC_FDS as well as other macros). */
78#undef NEW_PROC_API
79
c906108c
SS
80/* Define if ioctl argument PIOCSET is available. */
81#undef HAVE_PROCFS_PIOCSET
82
c906108c
SS
83/* Define if the `long long' type works. */
84#undef CC_HAS_LONG_LONG
85
86/* Define if the "ll" format works to print long long ints. */
87#undef PRINTF_HAS_LONG_LONG
88
89/* Define if the "%Lg" format works to print long doubles. */
90#undef PRINTF_HAS_LONG_DOUBLE
91
92/* Define if the "%Lg" format works to scan long doubles. */
93#undef SCANF_HAS_LONG_DOUBLE
94
95/* Define if using Solaris thread debugging. */
96#undef HAVE_THREAD_DB_LIB
97
b757528f
JJ
98/* Define if you support the tkill syscall. */
99#undef HAVE_TKILL_SYSCALL
100
c906108c
SS
101/* Define on a GNU/Linux system to work around problems in sys/procfs.h. */
102#undef START_INFERIOR_TRAPS_EXPECTED
103#undef sys_quotactl
104
105/* Define if you have HPUX threads */
106#undef HAVE_HPUX_THREAD_SUPPORT
107
108/* Define if you want to use the memory mapped malloc package (mmalloc). */
109#undef USE_MMALLOC
110
111/* Define if the runtime uses a routine from mmalloc before gdb has a chance
112 to initialize mmalloc, and we want to force checking to be used anyway.
113 This may cause spurious memory corruption messages if the runtime tries
114 to explicitly deallocate that memory when gdb calls exit. */
115#undef MMCHECK_FORCE
116
117/* Define to 1 if NLS is requested. */
118#undef ENABLE_NLS
119
120/* Define as 1 if you have catgets and don't want to use GNU gettext. */
121#undef HAVE_CATGETS
122
123/* Define as 1 if you have gettext and don't want to use GNU gettext. */
124#undef HAVE_GETTEXT
125
126/* Define as 1 if you have the stpcpy function. */
127#undef HAVE_STPCPY
128
129/* Define if your locale.h file contains LC_MESSAGES. */
130#undef HAVE_LC_MESSAGES
131
132/* Define if you want to use the full-screen terminal user interface. */
133#undef TUI
134
135/* Define if <proc_service.h> on solaris uses int instead of
136 size_t, and assorted other type changes. */
137#undef PROC_SERVICE_IS_OLD
138
7a292a7a
SS
139/* Define if the simulator is being linked in. */
140#undef WITH_SIM
141
c906108c 142/* Set to true if the save_state_t structure is present */
5c44784c 143#undef HAVE_STRUCT_SAVE_STATE_T
c906108c
SS
144
145/* Set to true if the save_state_t structure has the ss_wide member */
5c44784c
JM
146#undef HAVE_STRUCT_MEMBER_SS_WIDE
147
3f1ef994 148/* Define if <sys/ptrace.h> defines the PTRACE_GETREGS request. */
e7d0728a
AC
149#undef HAVE_PTRACE_GETREGS
150
6ce2ac0b
MK
151/* Define if <sys/ptrace.h> defines the PTRACE_GETFPXREGS request. */
152#undef HAVE_PTRACE_GETFPXREGS
e48f66e4 153
0afdd437
MK
154/* Define if <sys/ptrace.h> defines the PT_GETDBREGS request. */
155#undef HAVE_PT_GETDBREGS
156
7e89e357
JT
157/* Define if <sys/ptrace.h> defines the PT_GETXMMREGS request. */
158#undef HAVE_PT_GETXMMREGS
159
6166d547
AC
160/* Multi-arch enabled. */
161#undef GDB_MULTI_ARCH
162
5a2402b8
AC
163/* hostfile */
164#undef GDB_XM_FILE
165
166/* targetfile */
167#undef GDB_TM_FILE
168
169/* nativefile */
170#undef GDB_NM_FILE
This page took 0.349723 seconds and 4 git commands to generate.