valops.c (value_of_local): New function.
[deliverable/binutils-gdb.git] / gdb / defs.h
CommitLineData
9846de1b 1/* *INDENT-OFF* */ /* ATTR_FORMAT confuses indent, avoid running it for now */
c906108c 2/* Basic, host-specific, and target-specific definitions for GDB.
b6ba6518 3 Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
be4d1333 4 1997, 1998, 1999, 2000, 2001, 2002
c906108c
SS
5 Free Software Foundation, Inc.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24#ifndef DEFS_H
25#define DEFS_H
26
975ac915
MK
27#include "config.h" /* Generated by configure. */
28
c906108c 29#include <stdio.h>
975ac915 30#include <errno.h> /* System call error return status. */
c906108c
SS
31#include <limits.h>
32
33#ifdef HAVE_STDDEF_H
917317f4 34#include <stddef.h>
c906108c 35#else
975ac915 36#include <sys/types.h> /* For size_t. */
c906108c
SS
37#endif
38
104c1213
JM
39#ifdef HAVE_UNISTD_H
40#include <unistd.h>
41#endif
42
167baebf
MK
43/* First include ansidecl.h so we can use the various macro definitions
44 here and in all subsequent file inclusions. */
45
46#include "ansidecl.h"
47
0fbb3da7
TT
48#include "gdb_locale.h"
49
dd7bf85e
DJ
50/* For ``enum target_signal''. */
51#include "gdb/signals.h"
52
975ac915 53/* Just in case they're not defined in stdio.h. */
c906108c
SS
54
55#ifndef SEEK_SET
56#define SEEK_SET 0
57#endif
58#ifndef SEEK_CUR
59#define SEEK_CUR 1
60#endif
61
975ac915 62#include <stdarg.h> /* For va_list. */
c906108c
SS
63
64#include "libiberty.h"
65
c906108c
SS
66#include "progress.h"
67
c906108c
SS
68/* For BFD64 and bfd_vma. */
69#include "bfd.h"
70
6166d547
AC
71
72/* The target is partially multi-arched. Both "tm.h" and the
73 multi-arch vector provide definitions. "tm.h" normally overrides
74 the multi-arch vector (but there are a few exceptions). */
75
76#define GDB_MULTI_ARCH_PARTIAL 1
77
83905903
AC
78/* The target is partially multi-arched. Both the multi-arch vector
79 and "tm.h" provide definitions. "tm.h" cannot override a definition
80 provided by the multi-arch vector. It is detected as a compilation
81 error.
82
83 This setting is only useful during a multi-arch conversion. */
6166d547
AC
84
85#define GDB_MULTI_ARCH_TM 2
86
87/* The target is pure multi-arch. The MULTI-ARCH vector provides all
5a2402b8 88 definitions. "tm.h" is linked to an empty file. */
6166d547
AC
89
90#define GDB_MULTI_ARCH_PURE 3
91
92
93
c906108c
SS
94/* An address in the program being debugged. Host byte order. Rather
95 than duplicate all the logic in BFD which figures out what type
96 this is (long, long long, etc.) and whether it needs to be 64
97 bits (the host/target interactions are subtle), we just use
98 bfd_vma. */
99
100typedef bfd_vma CORE_ADDR;
101
104c1213
JM
102/* This is to make sure that LONGEST is at least as big as CORE_ADDR. */
103
104#ifndef LONGEST
105
106#ifdef BFD64
107
108#define LONGEST BFD_HOST_64_BIT
109#define ULONGEST BFD_HOST_U_64_BIT
110
111#else /* No BFD64 */
112
917317f4
JM
113#ifdef CC_HAS_LONG_LONG
114#define LONGEST long long
115#define ULONGEST unsigned long long
116#else
117#ifdef BFD_HOST_64_BIT
104c1213
JM
118/* BFD_HOST_64_BIT is defined for some hosts that don't have long long
119 (e.g. i386-windows) so try it. */
917317f4
JM
120#define LONGEST BFD_HOST_64_BIT
121#define ULONGEST BFD_HOST_U_64_BIT
122#else
123#define LONGEST long
124#define ULONGEST unsigned long
125#endif
126#endif
104c1213
JM
127
128#endif /* No BFD64 */
129
130#endif /* ! LONGEST */
131
c906108c
SS
132#ifndef min
133#define min(a, b) ((a) < (b) ? (a) : (b))
134#endif
135#ifndef max
136#define max(a, b) ((a) > (b) ? (a) : (b))
137#endif
138
1a0559af
AC
139/* Macros to do string compares.
140
141 NOTE: cagney/2000-03-14:
142
143 While old code can continue to refer to these macros, new code is
144 probably better off using strcmp() directly vis: ``strcmp() == 0''
145 and ``strcmp() != 0''.
146
147 This is because modern compilers can directly inline strcmp()
148 making the original justification for these macros - avoid function
149 call overhead by pre-testing the first characters
150 (``*X==*Y?...:0'') - redundant.
151
152 ``Even if [...] testing the first character does have a modest
153 performance improvement, I'd rather that whenever a performance
154 issue is found that we spend the effort on algorithmic
155 optimizations than micro-optimizing.'' J.T. */
c906108c 156
c906108c
SS
157#define STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0)
158#define STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0)
159
c906108c 160/* Check if a character is one of the commonly used C++ marker characters. */
917317f4 161extern int is_cplus_marker (int);
c906108c
SS
162
163/* use tui interface if non-zero */
164extern int tui_version;
165
c906108c
SS
166/* enable xdb commands if set */
167extern int xdb_commands;
168
169/* enable dbx commands if set */
170extern int dbx_commands;
171
172extern int quit_flag;
173extern int immediate_quit;
174extern int sevenbit_strings;
175
917317f4 176extern void quit (void);
c906108c 177
1a0559af
AC
178/* FIXME: cagney/2000-03-13: It has been suggested that the peformance
179 benefits of having a ``QUIT'' macro rather than a function are
180 marginal. If the overhead of a QUIT function call is proving
181 significant then its calling frequency should probably be reduced
182 [kingdon]. A profile analyzing the current situtation is
183 needed. */
184
c906108c
SS
185#ifdef QUIT
186/* do twice to force compiler warning */
187#define QUIT_FIXME "FIXME"
188#define QUIT_FIXME "ignoring redefinition of QUIT"
189#else
190#define QUIT { \
191 if (quit_flag) quit (); \
192 if (interactive_hook) interactive_hook (); \
193 PROGRESS (1); \
194}
195#endif
196
c906108c
SS
197/* Languages represented in the symbol table and elsewhere.
198 This should probably be in language.h, but since enum's can't
199 be forward declared to satisfy opaque references before their
200 actual definition, needs to be here. */
201
917317f4
JM
202enum language
203 {
204 language_unknown, /* Language not known */
205 language_auto, /* Placeholder for automatic setting */
206 language_c, /* C */
207 language_cplus, /* C++ */
50f85cdf 208 language_objc, /* Objective-C */
917317f4 209 language_java, /* Java */
db034ac5 210 /* OBSOLETE language_chill, */ /* Chill */
917317f4
JM
211 language_fortran, /* Fortran */
212 language_m2, /* Modula-2 */
213 language_asm, /* Assembly language */
750ba382
PM
214 language_scm, /* Scheme / Guile */
215 language_pascal /* Pascal */
917317f4 216 };
c906108c
SS
217
218enum precision_type
917317f4
JM
219 {
220 single_precision,
221 double_precision,
222 unspecified_precision
223 };
224
7f19b9a2
AC
225/* A generic, not quite boolean, enumeration. */
226enum auto_boolean
227{
228 AUTO_BOOLEAN_TRUE,
229 AUTO_BOOLEAN_FALSE,
230 AUTO_BOOLEAN_AUTO
231};
232
c906108c
SS
233/* the cleanup list records things that have to be undone
234 if an error happens (descriptors to be closed, memory to be freed, etc.)
235 Each link in the chain records a function to call and an
236 argument to give it.
237
238 Use make_cleanup to add an element to the cleanup chain.
239 Use do_cleanups to do all cleanup actions back to a given
240 point in the chain. Use discard_cleanups to remove cleanups
241 from the chain back to a given point, not doing them. */
242
243struct cleanup
917317f4
JM
244 {
245 struct cleanup *next;
246 void (*function) (PTR);
247 PTR arg;
248 };
c906108c
SS
249
250
251/* The ability to declare that a function never returns is useful, but
252 not really required to compile GDB successfully, so the NORETURN and
253 ATTR_NORETURN macros normally expand into nothing. */
254
255/* If compiling with older versions of GCC, a function may be declared
256 "volatile" to indicate that it does not return. */
257
258#ifndef NORETURN
917317f4 259#if defined(__GNUC__) \
c906108c 260 && (__GNUC__ == 1 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7))
917317f4
JM
261#define NORETURN volatile
262#else
263#define NORETURN /* nothing */
264#endif
c906108c
SS
265#endif
266
267/* GCC 2.5 and later versions define a function attribute "noreturn",
268 which is the preferred way to declare that a function never returns.
269 However GCC 2.7 appears to be the first version in which this fully
270 works everywhere we use it. */
271
272#ifndef ATTR_NORETURN
7d418785 273#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
917317f4
JM
274#define ATTR_NORETURN __attribute__ ((noreturn))
275#else
276#define ATTR_NORETURN /* nothing */
277#endif
c906108c
SS
278#endif
279
280#ifndef ATTR_FORMAT
7d418785 281#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 4))
917317f4
JM
282#define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
283#else
284#define ATTR_FORMAT(type, x, y) /* nothing */
285#endif
c906108c
SS
286#endif
287
288/* Needed for various prototypes */
289
c906108c
SS
290struct symtab;
291struct breakpoint;
c906108c
SS
292
293/* From blockframe.c */
294
917317f4 295extern int inside_entry_func (CORE_ADDR);
c906108c 296
917317f4 297extern int inside_entry_file (CORE_ADDR addr);
c906108c 298
917317f4 299extern int inside_main_func (CORE_ADDR pc);
c906108c 300
db034ac5 301/* OBSOLETE From ch-lang.c, for the moment. (FIXME) */
c906108c 302
db034ac5 303/* OBSOLETE extern char *chill_demangle (const char *); */
c906108c
SS
304
305/* From utils.c */
306
917317f4 307extern void initialize_utils (void);
392a587b 308
917317f4 309extern void notice_quit (void);
c906108c 310
917317f4 311extern int strcmp_iw (const char *, const char *);
c906108c 312
917317f4 313extern int subset_compare (char *, char *);
7a292a7a 314
917317f4 315extern char *safe_strerror (int);
c906108c 316
917317f4 317extern void init_malloc (void *);
c906108c 318
917317f4 319extern void request_quit (int);
c906108c 320
917317f4
JM
321extern void do_cleanups (struct cleanup *);
322extern void do_final_cleanups (struct cleanup *);
323extern void do_my_cleanups (struct cleanup **, struct cleanup *);
324extern void do_run_cleanups (struct cleanup *);
325extern void do_exec_cleanups (struct cleanup *);
326extern void do_exec_error_cleanups (struct cleanup *);
c906108c 327
917317f4
JM
328extern void discard_cleanups (struct cleanup *);
329extern void discard_final_cleanups (struct cleanup *);
330extern void discard_exec_error_cleanups (struct cleanup *);
331extern void discard_my_cleanups (struct cleanup **, struct cleanup *);
c906108c 332
e4005526
AC
333/* NOTE: cagney/2000-03-04: This typedef is strictly for the
334 make_cleanup function declarations below. Do not use this typedef
335 as a cast when passing functions into the make_cleanup() code.
336 Instead either use a bounce function or add a wrapper function.
337 Calling a f(char*) function with f(void*) is non-portable. */
338typedef void (make_cleanup_ftype) (void *);
339
340extern struct cleanup *make_cleanup (make_cleanup_ftype *, void *);
c906108c 341
917317f4 342extern struct cleanup *make_cleanup_freeargv (char **);
7a292a7a 343
d9fcf2fb
JM
344struct ui_file;
345extern struct cleanup *make_cleanup_ui_file_delete (struct ui_file *);
11cf8741 346
f5ff8c83
AC
347extern struct cleanup *make_cleanup_close (int fd);
348
5c65bbb6
AC
349extern struct cleanup *make_cleanup_bfd_close (bfd *abfd);
350
e4005526 351extern struct cleanup *make_final_cleanup (make_cleanup_ftype *, void *);
c906108c 352
917317f4 353extern struct cleanup *make_my_cleanup (struct cleanup **,
e4005526 354 make_cleanup_ftype *, void *);
c906108c 355
e4005526 356extern struct cleanup *make_run_cleanup (make_cleanup_ftype *, void *);
c906108c 357
e4005526
AC
358extern struct cleanup *make_exec_cleanup (make_cleanup_ftype *, void *);
359extern struct cleanup *make_exec_error_cleanup (make_cleanup_ftype *, void *);
43ff13b4 360
917317f4
JM
361extern struct cleanup *save_cleanups (void);
362extern struct cleanup *save_final_cleanups (void);
363extern struct cleanup *save_my_cleanups (struct cleanup **);
c906108c 364
917317f4
JM
365extern void restore_cleanups (struct cleanup *);
366extern void restore_final_cleanups (struct cleanup *);
367extern void restore_my_cleanups (struct cleanup **, struct cleanup *);
c906108c 368
2f9429ae 369extern void free_current_contents (void *);
c906108c 370
e54a9244 371extern void null_cleanup (void *);
c906108c 372
917317f4 373extern int myread (int, char *, int);
c906108c 374
6972bc8b 375extern int query (const char *, ...) ATTR_FORMAT (printf, 1, 2);
c906108c 376
917317f4 377extern void init_page_info (void);
392a587b 378
ac2e2ef7
AC
379extern CORE_ADDR host_pointer_to_address (void *ptr);
380extern void *address_to_host_pointer (CORE_ADDR addr);
381
58d370e0 382extern char *gdb_realpath (const char *);
08b204d1 383extern char *xfullpath (const char *);
58d370e0 384
c906108c
SS
385/* From demangle.c */
386
917317f4 387extern void set_demangling_style (char *);
c906108c
SS
388
389/* From tm.h */
390
391struct type;
917317f4 392typedef int (use_struct_convention_fn) (int gcc_p, struct type * value_type);
c906108c
SS
393extern use_struct_convention_fn generic_use_struct_convention;
394
c906108c
SS
395\f
396/* Annotation stuff. */
397
917317f4 398extern int annotation_level; /* in stack.c */
c906108c 399\f
917317f4 400extern void begin_line (void);
c906108c 401
917317f4 402extern void wrap_here (char *);
c906108c 403
917317f4 404extern void reinitialize_more_filter (void);
c906108c 405
0f71a2f6 406/* Normal results */
d9fcf2fb 407extern struct ui_file *gdb_stdout;
0f71a2f6 408/* Serious error notifications */
d9fcf2fb 409extern struct ui_file *gdb_stderr;
0f71a2f6
JM
410/* Log/debug/trace messages that should bypass normal stdout/stderr
411 filtering. For momement, always call this stream using
412 *_unfiltered. In the very near future that restriction shall be
413 removed - either call shall be unfiltered. (cagney 1999-06-13). */
d9fcf2fb 414extern struct ui_file *gdb_stdlog;
43ff13b4
JM
415/* Target output that should bypass normal stdout/stderr filtering.
416 For momement, always call this stream using *_unfiltered. In the
417 very near future that restriction shall be removed - either call
418 shall be unfiltered. (cagney 1999-07-02). */
d9fcf2fb 419extern struct ui_file *gdb_stdtarg;
c906108c 420
c906108c
SS
421#if defined(TUI)
422#include "tui.h"
c906108c
SS
423#endif
424
d9fcf2fb 425#include "ui-file.h"
c906108c 426
d1f4cff8
AC
427/* More generic printf like operations. Filtered versions may return
428 non-locally on error. */
c906108c 429
d9fcf2fb 430extern void fputs_filtered (const char *, struct ui_file *);
c906108c 431
d9fcf2fb 432extern void fputs_unfiltered (const char *, struct ui_file *);
c906108c 433
d9fcf2fb 434extern int fputc_filtered (int c, struct ui_file *);
c906108c 435
d9fcf2fb 436extern int fputc_unfiltered (int c, struct ui_file *);
c906108c 437
d1f4cff8
AC
438extern int putchar_filtered (int c);
439
917317f4 440extern int putchar_unfiltered (int c);
c906108c 441
917317f4 442extern void puts_filtered (const char *);
c906108c 443
917317f4 444extern void puts_unfiltered (const char *);
c906108c 445
917317f4 446extern void puts_debug (char *prefix, char *string, char *suffix);
c906108c 447
917317f4 448extern void vprintf_filtered (const char *, va_list) ATTR_FORMAT (printf, 1, 0);
c906108c 449
d9fcf2fb 450extern void vfprintf_filtered (struct ui_file *, const char *, va_list) ATTR_FORMAT (printf, 2, 0);
c906108c 451
d9fcf2fb 452extern void fprintf_filtered (struct ui_file *, const char *, ...) ATTR_FORMAT (printf, 2, 3);
c906108c 453
d9fcf2fb 454extern void fprintfi_filtered (int, struct ui_file *, const char *, ...) ATTR_FORMAT (printf, 3, 4);
c906108c 455
917317f4 456extern void printf_filtered (const char *, ...) ATTR_FORMAT (printf, 1, 2);
c906108c 457
917317f4 458extern void printfi_filtered (int, const char *, ...) ATTR_FORMAT (printf, 2, 3);
c906108c 459
917317f4 460extern void vprintf_unfiltered (const char *, va_list) ATTR_FORMAT (printf, 1, 0);
c906108c 461
d9fcf2fb 462extern void vfprintf_unfiltered (struct ui_file *, const char *, va_list) ATTR_FORMAT (printf, 2, 0);
c906108c 463
d9fcf2fb 464extern void fprintf_unfiltered (struct ui_file *, const char *, ...) ATTR_FORMAT (printf, 2, 3);
917317f4
JM
465
466extern void printf_unfiltered (const char *, ...) ATTR_FORMAT (printf, 1, 2);
c906108c 467
d9fcf2fb 468extern void print_spaces (int, struct ui_file *);
c906108c 469
d9fcf2fb 470extern void print_spaces_filtered (int, struct ui_file *);
c906108c 471
917317f4 472extern char *n_spaces (int);
c906108c 473
d9fcf2fb 474extern void fputstr_filtered (const char *str, int quotr, struct ui_file * stream);
43e526b9 475
d9fcf2fb 476extern void fputstr_unfiltered (const char *str, int quotr, struct ui_file * stream);
43e526b9 477
d9fcf2fb 478extern void fputstrn_unfiltered (const char *str, int n, int quotr, struct ui_file * stream);
c906108c 479
d4f3574e 480/* Display the host ADDR on STREAM formatted as ``0x%x''. */
d9fcf2fb 481extern void gdb_print_host_address (void *addr, struct ui_file *stream);
c906108c 482
104c1213
JM
483/* Convert a CORE_ADDR into a HEX string. paddr() is like %08lx.
484 paddr_nz() is like %lx. paddr_u() is like %lu. paddr_width() is
485 for ``%*''. */
d4f3574e 486extern int strlen_paddr (void);
917317f4
JM
487extern char *paddr (CORE_ADDR addr);
488extern char *paddr_nz (CORE_ADDR addr);
489extern char *paddr_u (CORE_ADDR addr);
490extern char *paddr_d (LONGEST addr);
c906108c 491
5683e87a
AC
492extern char *phex (ULONGEST l, int sizeof_l);
493extern char *phex_nz (ULONGEST l, int sizeof_l);
c906108c 494
03dd37c3
AC
495/* Like paddr() only print/scan raw CORE_ADDR. The output from
496 core_addr_to_string() can be passed direct to
497 string_to_core_addr(). */
498extern const char *core_addr_to_string (const CORE_ADDR addr);
079777f6 499extern const char *core_addr_to_string_nz (const CORE_ADDR addr);
03dd37c3
AC
500extern CORE_ADDR string_to_core_addr (const char *my_string);
501
d9fcf2fb 502extern void fprintf_symbol_filtered (struct ui_file *, char *,
917317f4 503 enum language, int);
c906108c 504
6972bc8b 505extern NORETURN void perror_with_name (const char *) ATTR_NORETURN;
c906108c 506
6972bc8b 507extern void print_sys_errmsg (const char *, int);
c906108c
SS
508
509/* From regex.c or libc. BSD 4.4 declares this with the argument type as
510 "const char *" in unistd.h, so we can't declare the argument
511 as "char *". */
512
917317f4 513extern char *re_comp (const char *);
c906108c
SS
514
515/* From symfile.c */
516
917317f4
JM
517extern void symbol_file_command (char *, int);
518
519/* Remote targets may wish to use this as their load function. */
520extern void generic_load (char *name, int from_tty);
521
522/* Summarise a download */
d9fcf2fb 523extern void print_transfer_performance (struct ui_file *stream,
917317f4
JM
524 unsigned long data_count,
525 unsigned long write_count,
526 unsigned long time_count);
c906108c
SS
527
528/* From top.c */
529
6426a772
JM
530typedef void initialize_file_ftype (void);
531
389e51db
AC
532extern char *skip_quoted (char *);
533
917317f4 534extern char *gdb_readline (char *);
c906108c 535
b4f5539f
TT
536extern char *gdb_readline_wrapper (char *);
537
917317f4 538extern char *command_line_input (char *, int, char *);
c906108c 539
917317f4 540extern void print_prompt (void);
c906108c 541
917317f4 542extern int input_from_terminal_p (void);
c906108c
SS
543
544extern int info_verbose;
545
546/* From printcmd.c */
547
917317f4 548extern void set_next_address (CORE_ADDR);
c906108c 549
d9fcf2fb 550extern void print_address_symbolic (CORE_ADDR, struct ui_file *, int,
917317f4 551 char *);
c906108c 552
dfcd3bfb 553extern int build_address_symbolic (CORE_ADDR addr,
7b83ea04
AC
554 int do_demangle,
555 char **name,
556 int *offset,
557 char **filename,
558 int *line,
dfcd3bfb
JM
559 int *unmapped);
560
d9fcf2fb 561extern void print_address_numeric (CORE_ADDR, int, struct ui_file *);
c906108c 562
d9fcf2fb 563extern void print_address (CORE_ADDR, struct ui_file *);
c906108c
SS
564
565/* From source.c */
566
1f8cc6db 567extern int openp (const char *, int, const char *, int, int, char **);
c906108c 568
917317f4 569extern int source_full_path_of (char *, char **);
c906108c 570
917317f4 571extern void mod_path (char *, char **);
c906108c 572
917317f4 573extern void directory_command (char *, int);
c906108c 574
917317f4 575extern void init_source_path (void);
c906108c 576
917317f4 577extern char *symtab_to_filename (struct symtab *);
c906108c 578
104c1213
JM
579/* From exec.c */
580
581extern void exec_set_section_offsets (bfd_signed_vma text_off,
582 bfd_signed_vma data_off,
583 bfd_signed_vma bss_off);
584
be4d1333
MS
585/* Take over the 'find_mapped_memory' vector from exec.c. */
586extern void exec_set_find_memory_regions (int (*) (int (*) (CORE_ADDR,
587 unsigned long,
588 int, int, int,
589 void *),
590 void *));
591
53a5351d
JM
592/* Possible lvalue types. Like enum language, this should be in
593 value.h, but needs to be here for the same reason. */
594
595enum lval_type
596 {
597 /* Not an lval. */
598 not_lval,
599 /* In memory. Could be a saved register. */
600 lval_memory,
601 /* In a register. */
602 lval_register,
603 /* In a gdb internal variable. */
604 lval_internalvar,
605 /* Part of a gdb internal variable (structure field). */
606 lval_internalvar_component,
607 /* In a register series in a frame not the current one, which may have been
608 partially saved or saved in different places (otherwise would be
609 lval_register or lval_memory). */
610 lval_reg_frame_relative
611 };
612
392a587b 613struct frame_info;
53a5351d 614
c906108c
SS
615/* From readline (but not in any readline .h files). */
616
917317f4 617extern char *tilde_expand (char *);
c906108c
SS
618
619/* Control types for commands */
620
621enum misc_command_type
917317f4
JM
622 {
623 ok_command,
624 end_command,
625 else_command,
626 nop_command
627 };
c906108c
SS
628
629enum command_control_type
917317f4
JM
630 {
631 simple_control,
632 break_control,
633 continue_control,
634 while_control,
635 if_control,
636 invalid_control
637 };
c906108c
SS
638
639/* Structure for saved commands lines
640 (for breakpoints, defined commands, etc). */
641
642struct command_line
917317f4
JM
643 {
644 struct command_line *next;
645 char *line;
646 enum command_control_type control_type;
647 int body_count;
648 struct command_line **body_list;
649 };
c906108c 650
917317f4 651extern struct command_line *read_command_lines (char *, int);
c906108c 652
917317f4 653extern void free_command_lines (struct command_line **);
c906108c 654
7b83ea04
AC
655/* To continue the execution commands when running gdb asynchronously.
656 A continuation structure contains a pointer to a function to be called
43ff13b4
JM
657 to finish the command, once the target has stopped. Such mechanism is
658 used bt the finish and until commands, and in the remote protocol
659 when opening an extended-remote connection. */
660
661struct continuation_arg
917317f4
JM
662 {
663 struct continuation_arg *next;
57e687d9
MS
664 union continuation_data {
665 void *pointer;
666 int integer;
667 long longint;
668 } data;
917317f4 669 };
43ff13b4
JM
670
671struct continuation
917317f4
JM
672 {
673 void (*continuation_hook) (struct continuation_arg *);
674 struct continuation_arg *arg_list;
675 struct continuation *next;
676 };
43ff13b4
JM
677
678/* In infrun.c. */
679extern struct continuation *cmd_continuation;
c2d11a7d
JM
680/* Used only by the step_1 function. */
681extern struct continuation *intermediate_continuation;
43ff13b4
JM
682
683/* From utils.c */
917317f4
JM
684extern void add_continuation (void (*)(struct continuation_arg *),
685 struct continuation_arg *);
686extern void do_all_continuations (void);
687extern void discard_all_continuations (void);
43ff13b4 688
c2d11a7d
JM
689extern void add_intermediate_continuation (void (*)(struct continuation_arg *),
690 struct continuation_arg *);
691extern void do_all_intermediate_continuations (void);
692extern void discard_all_intermediate_continuations (void);
693
c906108c
SS
694/* String containing the current directory (what getwd would return). */
695
696extern char *current_directory;
697
698/* Default radixes for input and output. Only some values supported. */
699extern unsigned input_radix;
700extern unsigned output_radix;
701
702/* Possibilities for prettyprint parameters to routines which print
703 things. Like enum language, this should be in value.h, but needs
704 to be here for the same reason. FIXME: If we can eliminate this
705 as an arg to LA_VAL_PRINT, then we can probably move it back to
706 value.h. */
707
708enum val_prettyprint
917317f4
JM
709 {
710 Val_no_prettyprint = 0,
711 Val_prettyprint,
712 /* Use the default setting which the user has specified. */
713 Val_pretty_default
714 };
39f77062 715
ca6724c1
KB
716/* The ptid struct is a collection of the various "ids" necessary
717 for identifying the inferior. This consists of the process id
718 (pid), thread id (tid), and other fields necessary for uniquely
719 identifying the inferior process/thread being debugged. When
720 manipulating ptids, the constructors, accessors, and predicate
721 declared in inferior.h should be used. These are as follows:
722
723 ptid_build - Make a new ptid from a pid, lwp, and tid.
724 pid_to_ptid - Make a new ptid from just a pid.
725 ptid_get_pid - Fetch the pid component of a ptid.
726 ptid_get_lwp - Fetch the lwp component of a ptid.
727 ptid_get_tid - Fetch the tid component of a ptid.
728 ptid_equal - Test to see if two ptids are equal.
729
730 Please do NOT access the struct ptid members directly (except, of
731 course, in the implementation of the above ptid manipulation
732 functions). */
733
734struct ptid
735 {
736 /* Process id */
737 int pid;
39f77062 738
ca6724c1
KB
739 /* Lightweight process id */
740 long lwp;
39f77062 741
ca6724c1
KB
742 /* Thread id */
743 long tid;
744 };
39f77062 745
ca6724c1 746typedef struct ptid ptid_t;
39f77062 747
c906108c 748\f
917317f4 749
5a2402b8
AC
750/* Optional host machine definition. Pure autoconf targets will not
751 need a "xm.h" file. This will be a symlink to one of the xm-*.h
752 files, built by the `configure' script. */
c906108c 753
5a2402b8 754#ifdef GDB_XM_FILE
c906108c 755#include "xm.h"
5a2402b8 756#endif
c906108c 757
5a2402b8
AC
758/* Optional native machine support. Non-native (and possibly pure
759 multi-arch) targets do not need a "nm.h" file. This will be a
760 symlink to one of the nm-*.h files, built by the `configure'
761 script. */
c906108c 762
5a2402b8 763#ifdef GDB_NM_FILE
c906108c 764#include "nm.h"
5a2402b8 765#endif
c906108c 766
5a2402b8
AC
767/* Optional target machine definition. Pure multi-arch configurations
768 do not need a "tm.h" file. This will be a symlink to one of the
c906108c
SS
769 tm-*.h files, built by the `configure' script. */
770
5a2402b8 771#ifdef GDB_TM_FILE
c906108c 772#include "tm.h"
6166d547
AC
773#endif
774
775/* GDB_MULTI_ARCH is normally set by configure.in using information
776 from configure.tgt or the config/%/%.mt Makefile fragment. Since
5a2402b8
AC
777 some targets have defined it in their "tm.h" file, delay providing
778 a default definition until after "tm.h" has been included.. */
6166d547
AC
779
780#ifndef GDB_MULTI_ARCH
781#define GDB_MULTI_ARCH 0
782#endif
783
c906108c
SS
784
785/* If the xm.h file did not define the mode string used to open the
786 files, assume that binary files are opened the same way as text
787 files */
788#ifndef FOPEN_RB
789#include "fopen-same.h"
790#endif
791
c906108c
SS
792/* Defaults for system-wide constants (if not defined by xm.h, we fake it).
793 FIXME: Assumes 2's complement arithmetic */
794
795#if !defined (UINT_MAX)
917317f4 796#define UINT_MAX ((unsigned int)(~0)) /* 0xFFFFFFFF for 32-bits */
c906108c
SS
797#endif
798
799#if !defined (INT_MAX)
917317f4 800#define INT_MAX ((int)(UINT_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
c906108c
SS
801#endif
802
803#if !defined (INT_MIN)
804#define INT_MIN ((int)((int) ~0 ^ INT_MAX)) /* 0x80000000 for 32-bits */
805#endif
806
807#if !defined (ULONG_MAX)
808#define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF for 32-bits */
809#endif
810
811#if !defined (LONG_MAX)
812#define LONG_MAX ((long)(ULONG_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
813#endif
814
4ce44c66 815#if !defined (ULONGEST_MAX)
658d99ff 816#define ULONGEST_MAX (~(ULONGEST)0) /* 0xFFFFFFFFFFFFFFFF for 64-bits */
4ce44c66
JM
817#endif
818
658d99ff 819#if !defined (LONGEST_MAX) /* 0x7FFFFFFFFFFFFFFF for 64-bits */
4ce44c66
JM
820#define LONGEST_MAX ((LONGEST)(ULONGEST_MAX >> 1))
821#endif
822
c906108c
SS
823/* Convert a LONGEST to an int. This is used in contexts (e.g. number of
824 arguments to a function, number in a value history, register number, etc.)
825 where the value must not be larger than can fit in an int. */
826
917317f4 827extern int longest_to_int (LONGEST);
c906108c 828
7b83ea04 829/* Assorted functions we can declare, now that const and volatile are
c906108c
SS
830 defined. */
831
5565b556 832extern char *savestring (const char *, size_t);
c906108c 833
5565b556 834extern char *msavestring (void *, const char *, size_t);
c906108c 835
917317f4 836extern char *mstrsave (void *, const char *);
c906108c 837
c0e61796
AC
838/* Robust versions of same. Throw an internal error when no memory,
839 guard against stray NULL arguments. */
840extern void *xmmalloc (void *md, size_t size);
841extern void *xmrealloc (void *md, void *ptr, size_t size);
842extern void *xmcalloc (void *md, size_t number, size_t size);
843extern void xmfree (void *md, void *ptr);
844
845/* xmalloc(), xrealloc() and xcalloc() have already been declared in
846 "libiberty.h". */
847extern void xfree (void *);
848
3fadccb3 849/* Utility macros to allocate typed memory. Avoids errors like
349c5d5f
AC
850 ``struct foo *foo = xmalloc (sizeof bar)'' and ``struct foo *foo =
851 (struct foo *) xmalloc (sizeof bar)''. */
852#define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
3fadccb3 853#define XCALLOC(NMEMB, TYPE) ((TYPE*) xcalloc ((NMEMB), sizeof (TYPE)))
349c5d5f 854
76995688
AC
855/* Like asprintf/vasprintf but get an internal_error if the call
856 fails. */
857extern void xasprintf (char **ret, const char *format, ...) ATTR_FORMAT (printf, 2, 3);
858extern void xvasprintf (char **ret, const char *format, va_list ap);
859
917317f4 860extern int parse_escape (char **);
c906108c 861
c906108c
SS
862/* Message to be printed before the error message, when an error occurs. */
863
864extern char *error_pre_print;
865
866/* Message to be printed before the error message, when an error occurs. */
867
868extern char *quit_pre_print;
869
870/* Message to be printed before the warning message, when a warning occurs. */
871
872extern char *warning_pre_print;
873
4ce44c66 874extern NORETURN void verror (const char *fmt, va_list ap) ATTR_NORETURN;
c906108c 875
823ca731 876extern NORETURN void error (const char *fmt, ...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
c906108c 877
d9fcf2fb 878extern NORETURN void error_stream (struct ui_file *) ATTR_NORETURN;
2acceee2 879
4ce44c66
JM
880/* Returns a freshly allocate buffer containing the last error
881 message. */
917317f4 882extern char *error_last_message (void);
2acceee2 883
8e65ff28
AC
884extern NORETURN void internal_verror (const char *file, int line,
885 const char *, va_list ap) ATTR_NORETURN;
4ce44c66 886
8e65ff28
AC
887extern NORETURN void internal_error (const char *file, int line,
888 const char *, ...) ATTR_NORETURN ATTR_FORMAT (printf, 3, 4);
4ce44c66 889
dec43320
AC
890extern void internal_vwarning (const char *file, int line,
891 const char *, va_list ap);
892
893extern void internal_warning (const char *file, int line,
894 const char *, ...) ATTR_FORMAT (printf, 3, 4);
895
917317f4 896extern NORETURN void nomem (long) ATTR_NORETURN;
c906108c 897
b5a2688f 898/* Reasons for calling throw_exception(). NOTE: all reason values
f9c696d2
AC
899 must be less than zero. enum value 0 is reserved for internal use
900 as the return value from an initial setjmp(). The function
901 catch_exceptions() reserves values >= 0 as legal results from its
902 wrapped function. */
c906108c 903
917317f4
JM
904enum return_reason
905 {
906 /* User interrupt. */
f9c696d2 907 RETURN_QUIT = -2,
917317f4
JM
908 /* Any other error. */
909 RETURN_ERROR
910 };
c906108c 911
43ff13b4
JM
912#define ALL_CLEANUPS ((struct cleanup *)0)
913
f9c696d2 914#define RETURN_MASK(reason) (1 << (int)(-reason))
99eeeb0f
ND
915#define RETURN_MASK_QUIT RETURN_MASK (RETURN_QUIT)
916#define RETURN_MASK_ERROR RETURN_MASK (RETURN_ERROR)
917#define RETURN_MASK_ALL (RETURN_MASK_QUIT | RETURN_MASK_ERROR)
c906108c
SS
918typedef int return_mask;
919
ab290c52 920/* Throw an exception of type RETURN_REASON. Will execute a LONG JUMP
b5a2688f
AC
921 to the inner most containing exception handler established using
922 catch_exceptions() (or the legacy catch_errors()).
ab290c52 923
b5a2688f
AC
924 Code normally throws an exception using error() et.al. For various
925 reaons, GDB also contains code that throws an exception directly.
926 For instance, the remote*.c targets contain CNTRL-C signal handlers
927 that propogate the QUIT event up the exception chain. ``This could
928 be a good thing or a dangerous thing.'' -- the Existential Wombat. */
ab290c52 929
b5a2688f 930extern NORETURN void throw_exception (enum return_reason) ATTR_NORETURN;
c906108c 931
f9c696d2
AC
932/* Call FUNC(UIOUT, FUNC_ARGS) but wrapped within an exception
933 handler. If an exception (enum return_reason) is thrown using
b5a2688f 934 throw_exception() than all cleanups installed since
f9c696d2
AC
935 catch_exceptions() was entered are invoked, the (-ve) exception
936 value is then returned by catch_exceptions. If FUNC() returns
937 normally (with a postive or zero return value) then that value is
938 returned by catch_exceptions(). It is an internal_error() for
939 FUNC() to return a negative value.
940
941 For the period of the FUNC() call: UIOUT is installed as the output
942 builder; ERRSTRING is installed as the error/quit message; and a
943 new cleanup_chain is established. The old values are restored
944 before catch_exceptions() returns.
945
946 FIXME; cagney/2001-08-13: The need to override the global UIOUT
947 builder variable should just go away.
948
949 This function superseeds catch_errors().
950
951 This function uses SETJMP() and LONGJUMP(). */
952
953struct ui_out;
954typedef int (catch_exceptions_ftype) (struct ui_out *ui_out, void *args);
955extern int catch_exceptions (struct ui_out *uiout,
956 catch_exceptions_ftype *func, void *func_args,
957 char *errstring, return_mask mask);
958
11cf8741
JM
959/* If CATCH_ERRORS_FTYPE throws an error, catch_errors() returns zero
960 otherwize the result from CATCH_ERRORS_FTYPE is returned. It is
961 probably useful for CATCH_ERRORS_FTYPE to always return a non-zero
962 value. It's unfortunate that, catch_errors() does not return an
963 indication of the exact exception that it caught - quit_flag might
f9c696d2
AC
964 help.
965
966 This function is superseeded by catch_exceptions(). */
11cf8741 967
917317f4 968typedef int (catch_errors_ftype) (PTR);
12b9c64f 969extern int catch_errors (catch_errors_ftype *, void *, char *, return_mask);
c906108c 970
11cf8741
JM
971/* Template to catch_errors() that wraps calls to command
972 functions. */
973
974typedef void (catch_command_errors_ftype) (char *, int);
975extern int catch_command_errors (catch_command_errors_ftype *func, char *command, int from_tty, return_mask);
976
917317f4 977extern void warning (const char *, ...) ATTR_FORMAT (printf, 1, 2);
c906108c 978
f5a96129
AC
979extern void vwarning (const char *, va_list args);
980
c906108c
SS
981/* Global functions from other, non-gdb GNU thingies.
982 Libiberty thingies are no longer declared here. We include libiberty.h
983 above, instead. */
984
985#ifndef GETENV_PROVIDED
917317f4 986extern char *getenv (const char *);
c906108c
SS
987#endif
988
989/* From other system libraries */
990
991#ifdef HAVE_STDDEF_H
992#include <stddef.h>
993#endif
994
995#ifdef HAVE_STDLIB_H
c906108c
SS
996#include <stdlib.h>
997#endif
998#ifndef min
999#define min(a, b) ((a) < (b) ? (a) : (b))
1000#endif
1001#ifndef max
1002#define max(a, b) ((a) > (b) ? (a) : (b))
1003#endif
1004
1005
1006/* We take the address of fclose later, but some stdio's forget
1007 to declare this. We can't always declare it since there's
1008 no way to declare the parameters without upsetting some compiler
1009 somewhere. */
1010
1011#ifndef FCLOSE_PROVIDED
917317f4 1012extern int fclose (FILE *);
c906108c
SS
1013#endif
1014
1015#ifndef atof
917317f4 1016extern double atof (const char *); /* X3.159-1989 4.10.1.1 */
c906108c
SS
1017#endif
1018
c906108c
SS
1019/* Various possibilities for alloca. */
1020#ifndef alloca
917317f4
JM
1021#ifdef __GNUC__
1022#define alloca __builtin_alloca
1023#else /* Not GNU C */
1024#ifdef HAVE_ALLOCA_H
1025#include <alloca.h>
1026#else
1027#ifdef _AIX
1028#pragma alloca
1029#else
c906108c
SS
1030
1031/* We need to be careful not to declare this in a way which conflicts with
1032 bison. Bison never declares it as char *, but under various circumstances
1033 (like __hpux) we need to use void *. */
917317f4 1034extern void *alloca ();
917317f4
JM
1035#endif /* Not _AIX */
1036#endif /* Not HAVE_ALLOCA_H */
1037#endif /* Not GNU C */
c906108c
SS
1038#endif /* alloca not defined */
1039
c906108c
SS
1040/* Dynamic target-system-dependent parameters for GDB. */
1041#include "gdbarch.h"
33489c5b
AC
1042#if (GDB_MULTI_ARCH == 0)
1043/* Multi-arch targets _should_ be including "arch-utils.h" directly
1044 into their *-tdep.c file. This is a prop to help old non-
1045 multi-arch targets to continue to compile. */
1046#include "arch-utils.h"
1047#endif
c906108c
SS
1048
1049/* Static target-system-dependent parameters for GDB. */
1050
1051/* Number of bits in a char or unsigned char for the target machine.
1052 Just like CHAR_BIT in <limits.h> but describes the target machine. */
1053#if !defined (TARGET_CHAR_BIT)
1054#define TARGET_CHAR_BIT 8
1055#endif
1056
c906108c
SS
1057/* If we picked up a copy of CHAR_BIT from a configuration file
1058 (which may get it by including <limits.h>) then use it to set
1059 the number of bits in a host char. If not, use the same size
1060 as the target. */
1061
1062#if defined (CHAR_BIT)
1063#define HOST_CHAR_BIT CHAR_BIT
1064#else
1065#define HOST_CHAR_BIT TARGET_CHAR_BIT
1066#endif
1067
1068/* The bit byte-order has to do just with numbering of bits in
1069 debugging symbols and such. Conceptually, it's quite separate
1070 from byte/word byte order. */
1071
1072#if !defined (BITS_BIG_ENDIAN)
d7449b42 1073#define BITS_BIG_ENDIAN (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
c906108c
SS
1074#endif
1075
1076/* In findvar.c. */
1077
37611a2b 1078extern LONGEST extract_signed_integer (const void *, int);
c906108c 1079
37611a2b 1080extern ULONGEST extract_unsigned_integer (const void *, int);
c906108c 1081
917317f4 1082extern int extract_long_unsigned_integer (void *, int, LONGEST *);
c906108c 1083
917317f4 1084extern CORE_ADDR extract_address (void *, int);
c906108c 1085
4478b372
JB
1086extern CORE_ADDR extract_typed_address (void *buf, struct type *type);
1087
a9ac8f51 1088extern void store_signed_integer (void *, int, LONGEST);
c906108c 1089
a9ac8f51 1090extern void store_unsigned_integer (void *, int, ULONGEST);
c906108c 1091
a9ac8f51 1092extern void store_address (void *, int, LONGEST);
c906108c 1093
4478b372
JB
1094extern void store_typed_address (void *buf, struct type *type, CORE_ADDR addr);
1095
c906108c 1096\f
c906108c
SS
1097/* From valops.c */
1098
917317f4 1099extern CORE_ADDR push_bytes (CORE_ADDR, char *, int);
c906108c 1100
917317f4 1101extern CORE_ADDR push_word (CORE_ADDR, ULONGEST);
c906108c 1102
c906108c 1103extern int watchdog;
c906108c
SS
1104
1105/* Hooks for alternate command interfaces. */
8b93c638 1106
fb40c209
AC
1107/* The name of the interpreter if specified on the command line. */
1108extern char *interpreter_p;
fb40c209
AC
1109
1110/* If a given interpreter matches INTERPRETER_P then it should update
1111 command_loop_hook and init_ui_hook with the per-interpreter
1112 implementation. */
1113/* FIXME: command_loop_hook and init_ui_hook should be moved here. */
1114
c906108c
SS
1115struct target_waitstatus;
1116struct cmd_list_element;
c906108c 1117
0f71a2f6
JM
1118/* Should the asynchronous variant of the interpreter (using the
1119 event-loop) be enabled? */
6426a772 1120extern int event_loop_p;
917317f4
JM
1121
1122extern void (*init_ui_hook) (char *argv0);
1123extern void (*command_loop_hook) (void);
c2d11a7d 1124extern void (*show_load_progress) (const char *section,
7b83ea04
AC
1125 unsigned long section_sent,
1126 unsigned long section_size,
1127 unsigned long total_sent,
c2d11a7d 1128 unsigned long total_size);
917317f4
JM
1129extern void (*print_frame_info_listing_hook) (struct symtab * s,
1130 int line, int stopline,
1131 int noerror);
1132extern struct frame_info *parse_frame_specification (char *frame_exp);
1133extern int (*query_hook) (const char *, va_list);
1134extern void (*warning_hook) (const char *, va_list);
d9fcf2fb 1135extern void (*flush_hook) (struct ui_file * stream);
917317f4
JM
1136extern void (*create_breakpoint_hook) (struct breakpoint * b);
1137extern void (*delete_breakpoint_hook) (struct breakpoint * bpt);
1138extern void (*modify_breakpoint_hook) (struct breakpoint * bpt);
1139extern void (*interactive_hook) (void);
1140extern void (*registers_changed_hook) (void);
1141extern void (*readline_begin_hook) (char *,...);
1142extern char *(*readline_hook) (char *);
1143extern void (*readline_end_hook) (void);
1144extern void (*register_changed_hook) (int regno);
1145extern void (*memory_changed_hook) (CORE_ADDR addr, int len);
1146extern void (*context_hook) (int);
39f77062
KB
1147extern ptid_t (*target_wait_hook) (ptid_t ptid,
1148 struct target_waitstatus * status);
917317f4
JM
1149
1150extern void (*attach_hook) (void);
1151extern void (*detach_hook) (void);
1152extern void (*call_command_hook) (struct cmd_list_element * c,
1153 char *cmd, int from_tty);
1154
1155extern void (*set_hook) (struct cmd_list_element * c);
1156
1157extern NORETURN void (*error_hook) (void) ATTR_NORETURN;
1158
1159extern void (*error_begin_hook) (void);
1160
1161extern int (*ui_load_progress_hook) (const char *section, unsigned long num);
c906108c
SS
1162
1163
1164/* Inhibit window interface if non-zero. */
1165
1166extern int use_windows;
1167
1168/* Symbolic definitions of filename-related things. */
1169/* FIXME, this doesn't work very well if host and executable
1170 filesystems conventions are different. */
1171
1172#ifndef DIRNAME_SEPARATOR
1173#define DIRNAME_SEPARATOR ':'
1174#endif
1175
c906108c 1176#ifndef SLASH_STRING
c906108c
SS
1177#define SLASH_STRING "/"
1178#endif
c906108c 1179
2584159e
EZ
1180#ifdef __MSDOS__
1181# define CANT_FORK
1182# define GLOBAL_CURDIR
1183#endif
1184
ca6724c1
KB
1185/* Provide default definitions of PIDGET, TIDGET, and MERGEPID.
1186 The name ``TIDGET'' is a historical accident. Many uses of TIDGET
1187 in the code actually refer to a lightweight process id, i.e,
1188 something that can be considered a process id in its own right for
1189 certain purposes. */
c906108c
SS
1190
1191#ifndef PIDGET
ca6724c1
KB
1192#define PIDGET(PTID) (ptid_get_pid (PTID))
1193#define TIDGET(PTID) (ptid_get_lwp (PTID))
1194#define MERGEPID(PID, TID) ptid_build (PID, TID, 0)
c906108c
SS
1195#endif
1196
96baa820
JM
1197/* Define well known filenos if the system does not define them. */
1198#ifndef STDIN_FILENO
1199#define STDIN_FILENO 0
1200#endif
1201#ifndef STDOUT_FILENO
1202#define STDOUT_FILENO 1
1203#endif
1204#ifndef STDERR_FILENO
1205#define STDERR_FILENO 2
1206#endif
1207
104c1213
JM
1208/* If this definition isn't overridden by the header files, assume
1209 that isatty and fileno exist on this system. */
1210#ifndef ISATTY
1211#define ISATTY(FP) (isatty (fileno (FP)))
1212#endif
1213
c906108c 1214#endif /* #ifndef DEFS_H */
This page took 0.253389 seconds and 4 git commands to generate.