diff options
author | Eli Zaretskii <eliz@gnu.org> | 2004-07-30 19:17:20 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2004-07-30 19:17:20 +0000 |
commit | 014d698b35008f566973fc2fe0d4a0d3e3009a06 (patch) | |
tree | 22e582437f29fe08fbbc4ee270a97a028d19564d /gdb/defs.h | |
parent | be7d7357efe8cad63c8920b7fa69f6d2324d6fa5 (diff) | |
download | gdb-014d698b35008f566973fc2fe0d4a0d3e3009a06.zip gdb-014d698b35008f566973fc2fe0d4a0d3e3009a06.tar.gz gdb-014d698b35008f566973fc2fe0d4a0d3e3009a06.tar.bz2 |
* defs.h (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH): New macros.
* exec.c (exec_file_attach):
* nto-tdep.c (nto_find_and_open_solib):
* pa64solib.c (pa64_solib_sizeof_symbol_table):
* solib.c (solib_open):
* somsolib.c (som_solib_sizeof_symbol_table):
* source.c (is_regular_file, openp, open_source_file):
* symfile.c (symfile_bfd_open):
* wince.c (upload_to_device): Differentiate between the search for
binary and source files.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -611,6 +611,9 @@ extern void print_address (CORE_ADDR, struct ui_file *); /* From source.c */ +#define OPF_TRY_CWD_FIRST 0x01 +#define OPF_SEARCH_IN_PATH 0x02 + extern int openp (const char *, int, const char *, int, int, char **); extern int source_full_path_of (char *, char **); |