* symfile.c (find_separate_debug_file): Add comment.
authorDoug Evans <dje@google.com>
Thu, 28 Mar 2013 18:17:38 +0000 (18:17 +0000)
committerDoug Evans <dje@google.com>
Thu, 28 Mar 2013 18:17:38 +0000 (18:17 +0000)
(terminate_after_last_dir_separator): Tweak comment.

gdb/ChangeLog
gdb/symfile.c

index 5a165c2611e858a037562735a92ede92cd31aa2b..f8c393b9b5b8e6b888e8478a54fd5c12baebb558 100644 (file)
@@ -1,5 +1,8 @@
 2013-03-28  Doug Evans  <dje@google.com>
 
+       * symfile.c (find_separate_debug_file): Add comment.
+       (terminate_after_last_dir_separator): Tweak comment.
+
        * dwarf2read.c (create_partial_symtab): Add forward decl.
        (create_partial_symtab): Move to be closer to other psymtab functions.
        (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
index d8fabb1082bddd069adfa4d00c3b71899a4953f1..edb05e4e6ddaedd7077c053c011432a710f8dbaa 100644 (file)
@@ -1408,7 +1408,9 @@ show_debug_file_directory (struct ui_file *file, int from_tty,
 /* Find a separate debuginfo file for OBJFILE, using DIR as the directory
    where the original file resides (may not be the same as
    dirname(objfile->name) due to symlinks), and DEBUGLINK as the file we are
-   looking for.  Returns the name of the debuginfo, of NULL.  */
+   looking for.  CANON_DIR is the "realpath" form of DIR.
+   DIR must contain a trailing '/'.
+   Returns the path of the file with separate debug info, of NULL.  */
 
 static char *
 find_separate_debug_file (const char *dir,
@@ -1491,7 +1493,7 @@ find_separate_debug_file (const char *dir,
   return NULL;
 }
 
-/* Modify PATH to contain only "directory/" part of PATH.
+/* Modify PATH to contain only "[/]directory/" part of PATH.
    If there were no directory separators in PATH, PATH will be empty
    string on return.  */