diff options
author | Christopher Faylor <me@cgf.cx> | 2001-05-25 03:13:14 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-05-25 03:13:14 +0000 |
commit | 86f41a0954e06824670215649c9fedc44d534331 (patch) | |
tree | 8d1c17ffecd384c59f8f3b934dc1dcc8f59a884c /winsup/cygwin/shared_info.h | |
parent | 3ed3570b680b793c7bb710654b0907b00571fc73 (diff) | |
download | cygnal-86f41a0954e06824670215649c9fedc44d534331.tar.gz cygnal-86f41a0954e06824670215649c9fedc44d534331.tar.bz2 cygnal-86f41a0954e06824670215649c9fedc44d534331.zip |
* path.cc (slash_drive_prefix_p): Remove.
(mount_info::slash_drive_to_win32_path): Ditto.
(mount_info::conv_to_win32_path): Remove slash drive prefix check.
(mount_info::add_item): Ditto.
(mount_info::del_item): Ditto.
* shared_info.h (mount_info): Remove slash_drive_to_win32_path declaration.
Diffstat (limited to 'winsup/cygwin/shared_info.h')
-rw-r--r-- | winsup/cygwin/shared_info.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/winsup/cygwin/shared_info.h b/winsup/cygwin/shared_info.h index efda1c3f7..cf61cbab8 100644 --- a/winsup/cygwin/shared_info.h +++ b/winsup/cygwin/shared_info.h @@ -14,7 +14,7 @@ details. */ class mount_item { -public: + public: /* FIXME: Nasty static allocation. Need to have a heap in the shared area [with the user being able to configure at runtime the max size]. */ @@ -45,7 +45,7 @@ public: class reg_key; class mount_info { -public: + public: DWORD version; DWORD sys_mount_table_counter; int nmounts; @@ -57,11 +57,11 @@ public: char cygdrive[MAX_PATH]; size_t cygdrive_len; unsigned cygdrive_flags; -private: + private: int posix_sorted[MAX_MOUNTS]; int native_sorted[MAX_MOUNTS]; -public: + public: /* Increment when setting up a reg_key if mounts area had to be created so we know when we need to import old mount tables. */ int had_to_create_mount_areas; @@ -89,7 +89,7 @@ public: void import_v1_mounts (); -private: + private: void sort (); void read_mounts (reg_key& r); @@ -99,7 +99,6 @@ private: int cygdrive_win32_path (const char *src, char *dst, int trailing_slash_p); void cygdrive_posix_path (const char *src, char *dst, int trailing_slash_p); - void slash_drive_to_win32_path (const char *path, char *buf, int trailing_slash_p); void read_cygdrive_info_from_registry (); }; @@ -132,7 +131,7 @@ public: class shared_info { DWORD inited; -public: + public: int heap_chunk_in_mb; DWORD sys_mount_table_counter; |