View | Details | Raw Unified | Return to bug 200245 | Differences between
and this patch

Collapse All | Expand All

(-)module/owlib/src/c/ow_rwlock.c (-1 lines)
Lines 25-31 void my_rwlock_init(my_rwlock_t * rwlock Link Here
25
	int semrc;
25
	int semrc;
26
	semrc = pthread_rwlock_init(rwlock, NULL);
26
	semrc = pthread_rwlock_init(rwlock, NULL);
27
	if(semrc != 0) {
27
	if(semrc != 0) {
28
		if ( 
29
		LOCK_DEBUG("semrc=%d [%s] RWLOCK INIT", semrc, strerror(errno));
28
		LOCK_DEBUG("semrc=%d [%s] RWLOCK INIT", semrc, strerror(errno));
30
		debug_crash();
29
		debug_crash();
31
	}
30
	}

Return to bug 200245