Changeset 9b77fee in rtems for c/src/exec/posix/src/cond.c
- Timestamp:
- 08/12/96 19:00:12 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 40cfab47
- Parents:
- 3b97b7a0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/cond.c
r3b97b7a0 r9b77fee 381 381 status = pthread_mutex_unlock( mutex ); 382 382 if ( status ) 383 return _POSIX_Mutex_From_core_mutex_status( status );383 return status; 384 384 385 385 the_cond->Mutex = *mutex; … … 393 393 status = pthread_mutex_lock( mutex ); 394 394 if ( status ) 395 return _POSIX_Mutex_From_core_mutex_status( status );395 return status; 396 396 397 397 return _Thread_Executing->Wait.return_code;
Note: See TracChangeset
for help on using the changeset viewer.