/* silcwin32thread.c Author: Pekka Riikonen Copyright (C) 2001 - 2005 Pekka Riikonen The contents of this file are subject to one of the Licenses specified in the COPYING file; You may not use this file except in compliance with the License. The software distributed under the License is distributed on an "AS IS" basis, in the hope that it will be useful, but WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the COPYING file for more information. */ /* $Id: silcwin32thread.c,v 1.5.4.3 2005/05/06 10:49:29 priikone Exp $ */ #include "silcincludes.h" #ifdef SILC_THREADS /* Thread structure for WIN32 */ typedef struct { HANDLE thread; SilcThreadStart start_func; void *context; bool waitable; } *SilcWin32Thread; static DWORD silc_thread_tls; /* Actual routine that is called by WIN32 when the thread is created. We will call the start_func from here. When this returns the thread is destroyed. */ unsigned __stdcall silc_thread_win32_start(void *context) { SilcWin32Thread thread = (SilcWin32Thread)context; TlsSetValue(silc_thread_tls, context); silc_thread_exit(thread->start_func(thread->context)); return 0; } #endif SilcThread silc_thread_create(SilcThreadStart start_func, void *context, bool waitable) { #ifdef SILC_THREADS SilcWin32Thread thread; unsigned id; SILC_LOG_DEBUG(("Creating new thread")); thread = silc_calloc(1, sizeof(*thread)); thread->start_func = start_func; thread->context = context; thread->waitable = waitable; thread->thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)silc_thread_win32_start, (void *)thread, 0, &id); if (!thread->thread) { SILC_LOG_ERROR(("Could not create new thread")); silc_free(thread); return NULL; } return (SilcThread)thread; #else /* Call thread callback immediately */ (*start_func)(context); return NULL; #endif } void silc_thread_exit(void *exit_value) { #ifdef SILC_THREADS SilcWin32Thread thread = TlsGetValue(silc_thread_tls); if (thread) { /* If the thread is waitable the memory is freed only in silc_thread_wait by another thread. If not waitable, free it now. */ if (!thread->waitable) { TerminateThread(thread->thread, 0); silc_free(thread); } TlsSetValue(silc_thread_tls, NULL); } ExitThread(0); #endif } SilcThread silc_thread_self(void) { #ifdef SILC_THREADS SilcWin32Thread self = TlsGetValue(silc_thread_tls); if (!self) { /* This should only happen for the main thread! */ HANDLE handle = GetCurrentThread (); HANDLE process = GetCurrentProcess (); self = silc_calloc(1, sizeof(*self)); DuplicateHandle(process, handle, process, &self->thread, 0, FALSE, DUPLICATE_SAME_ACCESS); TlsSetValue(silc_thread_tls, self); } return (SilcThread)self; #else return NULL; #endif } bool silc_thread_wait(SilcThread thread, void **exit_value) { #ifdef SILC_THREADS SilcWin32Thread self = (SilcWin32Thread)thread; SILC_LOG_DEBUG(("Waiting for thread %p", self)); if (!self->waitable) return FALSE; /* The thread is waitable thus we will free all memory after the WaitForSingleObject returns, the thread is destroyed after that. */ if (WaitForSingleObject(self->thread, 2500) == WAIT_TIMEOUT) TerminateThread(self->thread, 0); silc_free(self); if (exit_value) *exit_value = NULL; return TRUE; #else return FALSE; #endif }