Changeset 5a234809 in rtems
- Timestamp:
- 08/27/96 15:19:33 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b5c04b6
- Parents:
- e4cc4176
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/cond.c
re4cc4176 r5a234809 371 371 int status; 372 372 373 if ( !_POSIX_Mutex_Get( mutex, &location ) ) { 374 return EINVAL; 375 } 376 377 _Thread_Unnest_dispatch(); 378 373 379 the_cond = _POSIX_Condition_variables_Get( cond, &location ); 374 380 switch ( location ) { … … 389 395 390 396 status = pthread_mutex_unlock( mutex ); 397 /* XXX ignore this for now 391 398 if ( status ) { 392 399 _Thread_Enable_dispatch(); 393 400 return EINVAL; 394 401 } 402 */ 395 403 396 404 _Thread_queue_Enter_critical_section( &the_cond->Wait_queue ); -
cpukit/posix/src/cond.c
re4cc4176 r5a234809 371 371 int status; 372 372 373 if ( !_POSIX_Mutex_Get( mutex, &location ) ) { 374 return EINVAL; 375 } 376 377 _Thread_Unnest_dispatch(); 378 373 379 the_cond = _POSIX_Condition_variables_Get( cond, &location ); 374 380 switch ( location ) { … … 389 395 390 396 status = pthread_mutex_unlock( mutex ); 397 /* XXX ignore this for now 391 398 if ( status ) { 392 399 _Thread_Enable_dispatch(); 393 400 return EINVAL; 394 401 } 402 */ 395 403 396 404 _Thread_queue_Enter_critical_section( &the_cond->Wait_queue );
Note: See TracChangeset
for help on using the changeset viewer.