aboutsummaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2004-07-30 19:17:20 +0000
committerEli Zaretskii <eliz@gnu.org>2004-07-30 19:17:20 +0000
commit014d698b35008f566973fc2fe0d4a0d3e3009a06 (patch)
tree22e582437f29fe08fbbc4ee270a97a028d19564d /gdb/defs.h
parentbe7d7357efe8cad63c8920b7fa69f6d2324d6fa5 (diff)
downloadgdb-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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index 95b7e81..7ec9b1e 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -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 **);