Changeset 1042 for pjproject/trunk/pjlib/src/pj/os_core_unix.c
- Timestamp:
- Mar 5, 2007 9:08:01 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/os_core_unix.c
r974 r1042 1124 1124 PJ_ASSERT_RETURN(mutex, PJ_EINVAL); 1125 1125 1126 PJ_LOG(6,(mutex->obj_name, "Mutex: thread %s is trying", 1127 pj_thread_this()->obj_name)); 1128 1126 1129 status = pthread_mutex_trylock( &mutex->mutex ); 1127 1130 … … 1139 1142 pj_thread_this()->obj_name)); 1140 1143 #endif 1144 } else { 1145 PJ_LOG(6,(mutex->obj_name, "Mutex: thread %s's trylock() failed", 1146 pj_thread_this()->obj_name)); 1141 1147 } 1142 1148
Note: See TracChangeset
for help on using the changeset viewer.