From a3f1eff3882d54a0be9fa0f5114fde351ea6941e Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Fri, 28 Oct 2022 10:00:17 +0200 Subject: Cygwin: /proc//maps: output cygheap info Now that the cygheap isn't part of the CYgwin DLL anymore, we have a known memory location which is not known in maps output. Fix that by checking for cygheap address (same in all processes) and add to output. Signed-off-by: Corinna Vinschen --- winsup/cygwin/fhandler/process.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/winsup/cygwin/fhandler/process.cc b/winsup/cygwin/fhandler/process.cc index c8ca6e25a..a8c17f1b0 100644 --- a/winsup/cygwin/fhandler/process.cc +++ b/winsup/cygwin/fhandler/process.cc @@ -1066,6 +1066,8 @@ peb_teb_rinse_repeat: strcpy (posix_modname, "[cygwin-user-shared]"); else if (cur.abase == (char *) *proc_pinfo) strcpy (posix_modname, "[procinfo]"); + else if (cur.abase == (char *) cygheap) + strcpy (posix_modname, "[cygheap]"); else if (cur.abase == user_heap.base) strcpy (posix_modname, "[heap]"); else -- cgit v1.2.3