diff options
author | Hui Zhu <teawater@gmail.com> | 2010-05-05 09:20:20 +0000 |
---|---|---|
committer | Hui Zhu <teawater@gmail.com> | 2010-05-05 09:20:20 +0000 |
commit | 1412f70bc66429290d396f9b0d19ac0851c019b5 (patch) | |
tree | 2d61e21834166bf7a9d09686aac68f128a0175e3 | |
parent | d903301282bd777b82a395fc21dda695dc67f84d (diff) | |
download | gdb-1412f70bc66429290d396f9b0d19ac0851c019b5.zip gdb-1412f70bc66429290d396f9b0d19ac0851c019b5.tar.gz gdb-1412f70bc66429290d396f9b0d19ac0851c019b5.tar.bz2 |
2010-05-05 Hui Zhu <teawater@gmail.com>
* gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbarch.h | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ece4fc0..4f56ff1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2010-05-05 Hui Zhu <teawater@gmail.com> + + * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment. + 2010-05-04 Mark Kettenis <kettenis@gnu.org> * remote.c (register_remote_support_xml) diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index 6ccabfc..71da45b 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -950,9 +950,9 @@ extern void set_gdbarch_auto_wide_charset (struct gdbarch *gdbarch, gdbarch_auto extern const char * gdbarch_solib_symbols_extension (struct gdbarch *gdbarch); extern void set_gdbarch_solib_symbols_extension (struct gdbarch *gdbarch, const char * solib_symbols_extension); -/* If true the target OS has DOS-based file system semantics. That is, - absolute paths include a drive name, and the backslash is considered - a path separator. */ +/* If true, the target OS has DOS-based file system semantics. That + is, absolute paths include a drive name, and the backslash is + considered a directory separator. */ extern int gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch); extern void set_gdbarch_has_dos_based_file_system (struct gdbarch *gdbarch, int has_dos_based_file_system); |