From 904413e731347d5fd0e8356c3f79744eb3d977a4 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sun, 27 Jul 2008 14:52:46 +0000 Subject: * shared_info.h (shared_destroy): Declare. * shared.cc (shared_destroy): Define new function to destroy shared memory regions. * init.cc (dll_entry): Call shared_destroy when dll detaches from the process. --- winsup/cygwin/init.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'winsup/cygwin/init.cc') diff --git a/winsup/cygwin/init.cc b/winsup/cygwin/init.cc index b05427592..1e633f432 100644 --- a/winsup/cygwin/init.cc +++ b/winsup/cygwin/init.cc @@ -12,6 +12,7 @@ details. */ #include "winsup.h" #include "cygtls.h" #include "ntdll.h" +#include "shared_info.h" static DWORD _my_oldfunc; @@ -142,6 +143,8 @@ dll_entry (HANDLE h, DWORD reason, void *static_load) _my_oldfunc = TlsAlloc (); break; case DLL_PROCESS_DETACH: + if (dynamically_loaded) + shared_destroy (); break; case DLL_THREAD_ATTACH: if (hwait_sig) -- cgit v1.2.3