From c34bf0c659b945f0c012b1cdd7ea80de8292c608 Mon Sep 17 00:00:00 2001 From: rpj Date: Fri, 1 Jul 2011 15:55:23 +0000 Subject: *** empty log message *** --- pthread_win32_attach_detach_np.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'pthread_win32_attach_detach_np.c') diff --git a/pthread_win32_attach_detach_np.c b/pthread_win32_attach_detach_np.c index f8940e5..aa30a65 100644 --- a/pthread_win32_attach_detach_np.c +++ b/pthread_win32_attach_detach_np.c @@ -37,11 +37,6 @@ #include "pthread.h" #include "implement.h" -/* - * Handle to kernel32.dll - */ -static HINSTANCE ptw32_h_kernel32; - /* * Handle to quserex.dll */ @@ -67,7 +62,6 @@ pthread_win32_process_attach_np () /* * Load QUSEREX.DLL and try to get address of QueueUserAPCEx */ - SetDllDirectory(""); /* Don't search in current directory */ ptw32_h_quserex = LoadLibrary (TEXT ("QUSEREX.DLL")); if (ptw32_h_quserex != NULL) @@ -113,8 +107,6 @@ pthread_win32_process_attach_np () } } - SetDllDirectory(NULL); /* Reset DLL search path to default */ - if (ptw32_h_quserex) { ptw32_features |= PTW32_ALERTABLE_ASYNC_CANCEL; @@ -168,11 +160,6 @@ pthread_win32_process_detach_np () } (void) FreeLibrary (ptw32_h_quserex); } - - if (ptw32_h_kernel32) - { - (void) FreeLibrary (ptw32_h_kernel32); - } } return TRUE; -- cgit v1.2.3