From d5c78e3656cbc7410f333bfa80e2929947e6d0e5 Mon Sep 17 00:00:00 2001 From: rpj Date: Tue, 8 Mar 2005 07:36:56 +0000 Subject: compiler compatibility and bug fixes --- pthread.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'pthread.h') diff --git a/pthread.h b/pthread.h index 8a8139c..e668e60 100644 --- a/pthread.h +++ b/pthread.h @@ -37,8 +37,8 @@ * See the README file for an explanation of the pthreads-win32 version * numbering scheme and how the DLL is named etc. */ -#define PTW32_VERSION 1,2,0,0 -#define PTW32_VERSION_STRING "1, 2, 0, 0\0" +#define PTW32_VERSION 1,3,0,0 +#define PTW32_VERSION_STRING "1, 3, 0, 0\0" /* There are three implementations of cancel cleanup. * Note that pthread.h is included in both application @@ -677,9 +677,8 @@ enum { struct pthread_once_t_ { - volatile int done; /* indicates if user function executed */ - long started; /* First thread to increment this value */ - /* to zero executes the user function */ + volatile int done; /* indicates if user function has been executed */ + int started; }; -- cgit v1.2.3