diff options
author | Pedro Alves <palves@redhat.com> | 2010-04-24 13:12:56 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-04-24 13:12:56 +0000 |
commit | ab38a727c990476872ac4995792fc0d38d922d7f (patch) | |
tree | 9005fd3fefc5d3ab38663bba14fcebf841041a64 /gdb/defs.h | |
parent | 9a83a5533e5c082e2555505e7290456e4eb6afcb (diff) | |
download | gdb-ab38a727c990476872ac4995792fc0d38d922d7f.zip gdb-ab38a727c990476872ac4995792fc0d38d922d7f.tar.gz gdb-ab38a727c990476872ac4995792fc0d38d922d7f.tar.bz2 |
* defs.h: Adjust comment.
* filesystem.h, filesystem.c: New files.
* Makefile.in (SFILES): Add filesystem.c.
(COMMON_OBS): Add filesystem.o.
* solib.c (solib_find): Handle DOS-based filesystems. Handle
different target and host path flavours.
* arm-symbian-tdep.c (arm_symbian_init_abi): Set
has_dos_based_file_system on the gdbarch.
* arm-wince-tdep.c (arm_wince_init_abi): Ditto.
* i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
* i386-tdep.c (i386_go32_init_abi): Ditto.
* gdbarch.sh (has_dos_based_file_system): New.
* gdbarch.h, gdbarch.c: Regenerate.
* NEWS: Mention improved support for remote targets with DOS-based
filesystems. Mention new `set/show target-file-system-kind'
commands.
gdb/doc/
* gdb.texinfo (Commands to specify files): Describe what how GDB
looks up DOS-based filesystem paths on the system root. Document
the new `set/show target-file-system-kind' commands.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1155,9 +1155,9 @@ extern int (*deprecated_ui_load_progress_hook) (const char *section, extern int use_windows; -/* Symbolic definitions of filename-related things. */ -/* FIXME, this doesn't work very well if host and executable - filesystems conventions are different. */ +/* Definitions of filename-related things. */ + +/* Host specific things. */ #ifdef __MSDOS__ # define CANT_FORK |