Changeset 48b40d8 in rtems for cpukit/posix/src/cond.c
- Timestamp:
- 08/13/96 19:53:51 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 392b35e
- Parents:
- c8a4ed6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/posix/src/cond.c
rc8a4ed6 r48b40d8 389 389 if ( status ) { 390 390 _Thread_Enable_dispatch(); 391 return status;391 return EINVAL; 392 392 } 393 393 … … 411 411 status = pthread_mutex_lock( mutex ); 412 412 if ( status ) 413 return status;413 return EINVAL; 414 414 415 415 return _Thread_Executing->Wait.return_code;
Note: See TracChangeset
for help on using the changeset viewer.