* thread.h: Shorten "current_directory" variables to "cwd_*" throughout.

* path.cc: Ditto.
(normalize_posix_path): Add some extra debugging info.
(chdir): Ditto.  Store chdir'ed posix and MS-DOS directory names in "cache"
here rather than trying to derive them later.
This commit is contained in:
Christopher Faylor
2000-06-13 04:40:36 +00:00
parent a50b13da06
commit 00660f0110
3 changed files with 69 additions and 62 deletions

View File

@ -75,9 +75,9 @@ struct _winsup_t
/* path.cc */
struct mntent _ret;
char *_current_directory_name;
char *_current_directory_posix_name;
unsigned long _current_directory_hash;
char *_cwd_win32;
char *_cwd_posix;
unsigned long _cwd_hash;
int _iteration;
/* strerror */