Changeset db8e9011 in rtems


Ignore:
Timestamp:
08/12/96 17:02:39 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
f126ae2
Parents:
684c3c4
Message:

pthread_mutexattr_setprioceiling: valid priority ceiling check looked at
value in attribute structure instead of passed in priority

Files:
2 edited

Legend:

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

    r684c3c4 rdb8e9011  
    552552    return EINVAL;
    553553
    554   if ( !_POSIX_Priority_Is_valid( attr->prio_ceiling ) )
     554  if ( !_POSIX_Priority_Is_valid( prio_ceiling ) )
    555555    return EINVAL;
    556556
  • cpukit/posix/src/mutex.c

    r684c3c4 rdb8e9011  
    552552    return EINVAL;
    553553
    554   if ( !_POSIX_Priority_Is_valid( attr->prio_ceiling ) )
     554  if ( !_POSIX_Priority_Is_valid( prio_ceiling ) )
    555555    return EINVAL;
    556556
Note: See TracChangeset for help on using the changeset viewer.