* mount.cc (mount_info::got_usr_bin): Mark as NO_COPY.
(mount_info::got_usr_lib): Ditto. (mount_info::root_idx): Ditto.
This commit is contained in:
parent
0a23799aee
commit
3fdcac0b1c
|
@ -1,3 +1,9 @@
|
||||||
|
2009-05-18 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
|
* mount.cc (mount_info::got_usr_bin): Mark as NO_COPY.
|
||||||
|
(mount_info::got_usr_lib): Ditto.
|
||||||
|
(mount_info::root_idx): Ditto.
|
||||||
|
|
||||||
2009-05-14 Corinna Vinschen <corinna@vinschen.de>
|
2009-05-14 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* wchar.h (sys_mbstowcs): Add missing __stdcall attribute.
|
* wchar.h (sys_mbstowcs): Add missing __stdcall attribute.
|
||||||
|
|
|
@ -45,9 +45,9 @@ details. */
|
||||||
#define isproc(path) \
|
#define isproc(path) \
|
||||||
(path_prefix_p (proc, (path), proc_len, false))
|
(path_prefix_p (proc, (path), proc_len, false))
|
||||||
|
|
||||||
bool mount_info::got_usr_bin;
|
bool NO_COPY mount_info::got_usr_bin;
|
||||||
bool mount_info::got_usr_lib;
|
bool NO_COPY mount_info::got_usr_lib;
|
||||||
int mount_info::root_idx = -1;
|
int NO_COPY mount_info::root_idx = -1;
|
||||||
|
|
||||||
/* is_unc_share: Return non-zero if PATH begins with //server/share
|
/* is_unc_share: Return non-zero if PATH begins with //server/share
|
||||||
or with one of the native prefixes //./ or //?/
|
or with one of the native prefixes //./ or //?/
|
||||||
|
|
Loading…
Reference in New Issue