public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Cygwin: mount_info::get_mounts_here: alloc temp mountpoint info on cygheap
@ 2022-08-05 10:01 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2022-08-05 10:01 UTC (permalink / raw)
  To: cygwin-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=1e428bee1c5ef7c76ba4e46e6693b913edc9bbf3

commit 1e428bee1c5ef7c76ba4e46e6693b913edc9bbf3
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Fri Aug 5 12:01:45 2022 +0200

    Cygwin: mount_info::get_mounts_here: alloc temp mountpoint info on cygheap
    
    That *should* be slightly faster than allocating on the user heap.
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/mount.cc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/winsup/cygwin/mount.cc b/winsup/cygwin/mount.cc
index 76d1e9a6d..63c9d2874 100644
--- a/winsup/cygwin/mount.cc
+++ b/winsup/cygwin/mount.cc
@@ -739,15 +739,15 @@ mount_info::get_mounts_here (const char *parent_dir, size_t parent_dir_len,
       if (last_slash == mi->posix_path)
 	{
 	  if (parent_dir_len == 1 && mi->posix_pathlen > 1)
-	    sys_mbstouni_alloc (&mount_points[n_mounts++], HEAP_NOTHEAP,
+	    sys_mbstouni_alloc (&mount_points[n_mounts++], HEAP_BUF,
 			        last_slash + 1);
 	}
       else if (parent_dir_len == (size_t) (last_slash - mi->posix_path)
 	       && strncasematch (parent_dir, mi->posix_path, parent_dir_len))
-	sys_mbstouni_alloc (&mount_points[n_mounts++], HEAP_NOTHEAP,
+	sys_mbstouni_alloc (&mount_points[n_mounts++], HEAP_BUF,
 			    last_slash + 1);
     }
-  sys_mbstouni_alloc (cygd, HEAP_NOTHEAP, cygdrive + 1);
+  sys_mbstouni_alloc (cygd, HEAP_BUF, cygdrive + 1);
   if (cygd->Length)
     cygd->Length -= 2;	// Strip trailing slash
   return n_mounts;
@@ -758,8 +758,8 @@ mount_info::free_mounts_here (PUNICODE_STRING mount_points, int n_mounts,
 			      PUNICODE_STRING cygd)
 {
   for (int i = 0; i < n_mounts; ++i)
-    free (mount_points[i].Buffer);
-  free (cygd->Buffer);
+    cfree (mount_points[i].Buffer);
+  cfree (cygd->Buffer);
 }
 
 /* cygdrive_posix_path: Build POSIX path used as the


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-08-05 10:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-05 10:01 [newlib-cygwin] Cygwin: mount_info::get_mounts_here: alloc temp mountpoint info on cygheap Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).