Module: wine Branch: master Commit: 5170b1b456aac69010f947be7f79b73daad1dabf URL: http://source.winehq.org/git/wine.git/?a=commit;h=5170b1b456aac69010f947be7f...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Mar 30 15:04:51 2009 +0200
ntdll: Remove no longer used pthread_functions structure.
---
dlls/ntdll/thread.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/dlls/ntdll/thread.c b/dlls/ntdll/thread.c index a69746c..8c6d72c 100644 --- a/dlls/ntdll/thread.c +++ b/dlls/ntdll/thread.c @@ -37,7 +37,6 @@ #include "winternl.h" #include "wine/library.h" #include "wine/server.h" -#include "wine/pthread.h" #include "wine/debug.h" #include "ntdll_misc.h" #include "ddk/wdm.h" @@ -69,9 +68,6 @@ static size_t sigstack_total_size; static ULONG sigstack_zero_bits; static int nb_threads = 1;
-static struct wine_pthread_functions pthread_functions; - - static RTL_CRITICAL_SECTION ldt_section; static RTL_CRITICAL_SECTION_DEBUG critsect_debug = { @@ -289,7 +285,6 @@ HANDLE thread_init(void) thread_data->debug_info = &debug_info; InsertHeadList( &tls_links, &teb->TlsLinks );
- wine_pthread_get_functions( &pthread_functions, sizeof(pthread_functions) ); signal_init_thread( teb ); virtual_init_threading();