From 5170b1b456aac69010f947be7f79b73daad1dabf Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 30 Mar 2009 15:04:51 +0200 Subject: [PATCH] ntdll: Remove no longer used pthread_functions structure. --- dlls/ntdll/thread.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dlls/ntdll/thread.c b/dlls/ntdll/thread.c index a69746c1c8e..8c6d72c5e30 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();