diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2000-06-08 13:24:52 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2000-06-08 13:24:52 +0000 |
commit | 95bdb4966fc28a6acd32c8b11f3d34e5be5a988c (patch) | |
tree | a0f8aacb064169cf5d44b93b6b25882608288ae2 /winsup/cygwin/ChangeLog | |
parent | 9500a3db906ebfde288593b16132beecea93ee50 (diff) | |
download | cygnal-95bdb4966fc28a6acd32c8b11f3d34e5be5a988c.tar.gz cygnal-95bdb4966fc28a6acd32c8b11f3d34e5be5a988c.tar.bz2 cygnal-95bdb4966fc28a6acd32c8b11f3d34e5be5a988c.zip |
path.cc (mount_info::init): Eliminate the mount_slash feature.
(mount_slash): Eliminated.
(mount_info::read_mounts): Eliminate looking up existing entries. The
loop for deleting cygpath entries is done only when such entries exist.
(mount_info::from_registry): Eliminate sorting.
(mount_info::add_item): Call add_reg_mount if necessary. Check nmounts
more precisely. Use strcasematch in looking up existing entries.
(mount_info::del_item): Call del_reg_mount if necessary. Use
strcasematch. Use memmove instead of memcpy.
(mount_info::import_v1_registry): Everything is done in this method.
(mount_info::to_registry): Eliminated.
(mount_info::from_v1_registry): Eliminated.
(cygwin_umount): Simply call del_item.
shared.h: Modify the declaration of add_item and del_item. Remove the
declaration of from_v1_registry.
Diffstat (limited to 'winsup/cygwin/ChangeLog')
-rw-r--r-- | winsup/cygwin/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index f43644f41..389e562df 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,21 @@ +2000-06-07 Kazuhiro Fujieda <fujieda@jaist.ac.jp> + + path.cc (mount_info::init): Eliminate the mount_slash feature. + (mount_slash): Eliminated. + (mount_info::read_mounts): Eliminate looking up existing entries. The + loop for deleting cygpath entries is done only when such entries exist. + (mount_info::from_registry): Eliminate sorting. + (mount_info::add_item): Call add_reg_mount if necessary. Check nmounts + more precisely. Use strcasematch in looking up existing entries. + (mount_info::del_item): Call del_reg_mount if necessary. Use + strcasematch. Use memmove instead of memcpy. + (mount_info::import_v1_registry): Everything is done in this method. + (mount_info::to_registry): Eliminated. + (mount_info::from_v1_registry): Eliminated. + (cygwin_umount): Simply call del_item. + shared.h: Modify the declaration of add_item and del_item. Remove the + declaration of from_v1_registry. + Wed Jun 7 23:56:10 2000 Christopher Faylor <cgf@cygnus.com> * include/cygwin/version.h: Bump DLL minor version number to 3. |