X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fthreads.h;fp=src%2Fthreads.h;h=d2ef4a640c7766bd6d00176dd89aca108f76ca9e;hb=b107b10c4ef70bdf74d6d6ac57ff5ab2698b9cb2;hp=3243907d5d52c3c36114edcf75a13085584fe3b9;hpb=9e00aaa5be9c92f1cee93bca3f0e473009cc3541;p=tinc diff --git a/src/threads.h b/src/threads.h index 3243907d..d2ef4a64 100644 --- a/src/threads.h +++ b/src/threads.h @@ -1,11 +1,6 @@ #ifndef __THREADS_H__ #define __THREADS_H__ -typedef struct event { - int foo; -} event_t; - - #ifdef HAVE_MINGW typedef HANDLE thread_t; typedef CRITICAL_SECTION mutex_t; @@ -33,11 +28,11 @@ static inline void mutex_unlock(mutex_t *mutex) { typedef pthread_t thread_t; typedef pthread_mutex_t mutex_t; -static inline void thread_create(thread_t *tid, void (*func)(void *), void *arg) { +static inline bool thread_create(thread_t *tid, void (*func)(void *), void *arg) { return !pthread_create(tid, NULL, (void *(*)(void *))func, arg); } static inline void thread_destroy(thread_t *tid) { - pthread_join(tid); + pthread_join(*tid, NULL); } static inline void mutex_create(mutex_t *mutex) { pthread_mutex_init(mutex, NULL);