summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/path.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-07-17 09:00:19 +0000
committerCorinna Vinschen <corinna@vinschen.de>2009-07-17 09:00:19 +0000
commit0fb0fb8391f2e78177585c8e4842d0fce79e4408 (patch)
tree5da550cae68679224c31aa0137b2b6de7730021f /winsup/cygwin/path.h
parentb7735ec72d95b7abb02dc8014432a84001c1ce7a (diff)
downloadcygnal-0fb0fb8391f2e78177585c8e4842d0fce79e4408.tar.gz
cygnal-0fb0fb8391f2e78177585c8e4842d0fce79e4408.tar.bz2
cygnal-0fb0fb8391f2e78177585c8e4842d0fce79e4408.zip
* globals.cc: Improve comment on R/O UNICODE_STRINGs.
* mount.h (class fs_info): Add is_mvfs bit. * mount.cc (fs_info::update): Recognize MVFS remote filesystem. (fillout_mntent): Reorder filesystem checks for speed. Add mvfs, unixfs, and sunwnfs filesystem types. * path.h (class path_conv): Add fs_is_mvfs method. * path.cc (symlink_worker): On MVFS, always create symlinks as Windows shortcuts. Explain why.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r--winsup/cygwin/path.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h
index 1159ba8d4..952e0584a 100644
--- a/winsup/cygwin/path.h
+++ b/winsup/cygwin/path.h
@@ -231,6 +231,7 @@ class path_conv
bool fs_is_nfs () const {return fs.is_nfs ();}
bool fs_is_netapp () const {return fs.is_netapp ();}
bool fs_is_cdrom () const {return fs.is_cdrom ();}
+ bool fs_is_mvfs () const {return fs.is_mvfs ();}
ULONG fs_serial_number () const {return fs.serial_number ();}
void set_path (const char *p) {strcpy (path, p);}
void fillin (HANDLE h);