Changeset 9b77fee in rtems for c/src/exec/posix/src/cond.c


Ignore:
Timestamp:
08/12/96 19:00:12 (27 years ago)
Author:
Mark Johannes <Mark.Johannes@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
40cfab47
Parents:
3b97b7a0
Message:

Wait_support: removed the calls to mutex core to posix status codes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/posix/src/cond.c

    r3b97b7a0 r9b77fee  
    381381      status = pthread_mutex_unlock( mutex );
    382382      if ( status )
    383         return _POSIX_Mutex_From_core_mutex_status( status );
     383        return status;
    384384 
    385385      the_cond->Mutex = *mutex;
     
    393393      status = pthread_mutex_lock( mutex );
    394394      if ( status )
    395         return _POSIX_Mutex_From_core_mutex_status( status );
     395        return status;
    396396   
    397397      return _Thread_Executing->Wait.return_code;
Note: See TracChangeset for help on using the changeset viewer.