diff options
author | Christopher Faylor <me@cgf.cx> | 2005-08-19 16:29:43 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-08-19 16:29:43 +0000 |
commit | 683ef953925b1d05e49bd9e75147ebc02e9cb82c (patch) | |
tree | 7c2b45f9cd656d7b9c3f97066181192e04f9a6dd /winsup/cygwin/fhandler.h | |
parent | 358063ace374e05025d124a17a0167b818b666ea (diff) | |
download | cygnal-683ef953925b1d05e49bd9e75147ebc02e9cb82c.tar.gz cygnal-683ef953925b1d05e49bd9e75147ebc02e9cb82c.tar.bz2 cygnal-683ef953925b1d05e49bd9e75147ebc02e9cb82c.zip |
* fhandler.h (dirent_states): Add dirent_saw_proc.
* fhandler_disk_file.cc (fhandler_disk_file::readdir): Fill in "proc" if it is
the root dir and it is missing.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index d8694c809..1728c1a39 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -46,7 +46,8 @@ enum dirent_states dirent_saw_eof = 0x0004, dirent_isroot = 0x0008, dirent_saw_cygdrive = 0x0010, - dirent_saw_dev = 0x0020 + dirent_saw_dev = 0x0020, + dirent_saw_proc = 0x0040 }; enum conn_state |