/* silcunixthread.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: silcunixthread.c,v 1.5.4.1 2005/04/30 15:31:27 priikone Exp $ */ #include "silcincludes.h" SilcThread silc_thread_create(SilcThreadStart start_func, void *context, bool waitable) { #ifdef SILC_THREADS pthread_attr_t attr; pthread_t thread; int ret; SILC_LOG_DEBUG(("Creating new thread")); if (!start_func) return NULL; if (pthread_attr_init(&attr)) { SILC_LOG_ERROR(("Thread error: %s", strerror(errno))); return NULL; } if (pthread_attr_setdetachstate(&attr, waitable ? PTHREAD_CREATE_JOINABLE : PTHREAD_CREATE_DETACHED)) { SILC_LOG_ERROR(("Thread error: %s", strerror(errno))); pthread_attr_destroy(&attr); return NULL; } ret = pthread_create(&thread, &attr, (void * (*)(void *))start_func, context); if (ret) { SILC_LOG_ERROR(("Thread error: %s", strerror(errno))); pthread_attr_destroy(&attr); return NULL; } pthread_attr_destroy(&attr); SILC_LOG_DEBUG(("Created thread %p", (SilcThread)thread)); return (SilcThread)thread; #else /* Call thread callback immediately */ (*start_func)(context); return NULL; #endif } void silc_thread_exit(void *exit_value) { #ifdef SILC_THREADS pthread_exit(exit_value); #endif } SilcThread silc_thread_self(void) { #ifdef SILC_THREADS pthread_t self = pthread_self(); return (SilcThread)self; #else return NULL; #endif } bool silc_thread_wait(SilcThread thread, void **exit_value) { #ifdef SILC_THREADS SILC_LOG_DEBUG(("Waiting for thread %p", thread)); if (!pthread_join(*(pthread_t *)thread, exit_value)) return TRUE; return FALSE; #else return FALSE; #endif }