Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-05-29 07:50:15 +0400
committerChristopher Faylor <me@cgf.cx>2003-05-29 07:50:15 +0400
commitb666c2eb34f4f75e14229740f5f2de2d6d6c674f (patch)
tree633e4165f5b51fde3e73349f1670d8fa35095975 /winsup/cygwin/include
parent72c1470d67d975abc6be3aa114c7932f63b413fa (diff)
* mkvers.sh: Avoid "-dontuse" tags.
* path.cc (path_conv::check): Set exec state based on known situations. * path.cc (mount_item::fnmunge): New function. (mount_item::build_win32): New function. (mount_info::conv_to_win32_path): Use build_win32 to build windows path. * path.h (mount_item::fnmunge): Declare new function. (mount_item::build_win32): Ditto. * sys/mount.h (MOUNT_ENC): Define.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r--winsup/cygwin/include/sys/mount.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/include/sys/mount.h b/winsup/cygwin/include/sys/mount.h
index 57413740f..5915ddcae 100644
--- a/winsup/cygwin/include/sys/mount.h
+++ b/winsup/cygwin/include/sys/mount.h
@@ -28,7 +28,8 @@ enum
not yet implemented */
MOUNT_NOTEXEC = 0x100, /* don't check files for executable magic */
MOUNT_DEVFS = 0x200, /* /device "filesystem" */
- MOUNT_PROC = 0x400 /* /proc "filesystem" */
+ MOUNT_PROC = 0x400, /* /proc "filesystem" */
+ MOUNT_ENC = 0x800 /* encode special characters */
};
int mount (const char *, const char *, unsigned __flags);