- Timestamp:
- Apr 17, 2011, 4:27:27 PM (14 years ago)
- Location:
- pthread/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified pthread/trunk/src/my_os2cond.c ¶
r310 r313 115 115 116 116 // initialize static semaphores created with PTHREAD_COND_INITIALIZER state. 117 if (*cond == -1)117 if (*cond == PTHREAD_COND_INITIALIZER) 118 118 pthread_cond_init( cond, NULL); 119 119 … … 155 155 156 156 // initialize static semaphores created with PTHREAD_COND_INITIALIZER state. 157 if (*cond == -1)157 if (*cond == PTHREAD_COND_INITIALIZER) 158 158 pthread_cond_init( cond, NULL); 159 159 … … 198 198 199 199 // initialize static semaphores created with PTHREAD_COND_INITIALIZER state. 200 if (*cond == -1)200 if (*cond == PTHREAD_COND_INITIALIZER) 201 201 pthread_cond_init( cond, NULL); 202 202 … … 224 224 225 225 // initialize static semaphores created with PTHREAD_COND_INITIALIZER state. 226 if (*cond == -1)226 if (*cond == PTHREAD_COND_INITIALIZER) 227 227 pthread_cond_init( cond, NULL); 228 228 -
TabularUnified pthread/trunk/src/pthread.h ¶
r310 r313 40 40 #define PTHREAD_NEEDS_INIT 0 41 41 #define PTHREAD_DONE_INIT 1 42 #define PTHREAD_COND_INITIALIZER {-1,-1}42 #define PTHREAD_COND_INITIALIZER ((pthread_cond_t) -1) 43 43 44 44 #define pthread_handler_decl(A,B) void * A(void *B)
Note:
See TracChangeset
for help on using the changeset viewer.