Changeset ccdf4c57 in rtems
- Timestamp:
- 08/12/96 18:05:47 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c7a9c66
- Parents:
- d06e9ca
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/mutex.c
rd06e9ca rccdf4c57 592 592 int status; 593 593 594 if ( !old_ceiling ) 595 return EINVAL; 596 594 597 if ( !_POSIX_Priority_Is_valid( prioceiling ) ) 595 598 return EINVAL; … … 608 611 switch ( location ) { 609 612 case OBJECTS_ERROR: 610 return EINVAL; 613 return EINVAL; /* impossible to get here */ 611 614 case OBJECTS_REMOTE: 612 615 /* XXX It feels questionable to set the ceiling on a remote mutex. */ 613 return POSIX_MP_NOT_IMPLEMENTED();614 616 return EINVAL; 615 617 case OBJECTS_LOCAL: -
cpukit/posix/src/mutex.c
rd06e9ca rccdf4c57 592 592 int status; 593 593 594 if ( !old_ceiling ) 595 return EINVAL; 596 594 597 if ( !_POSIX_Priority_Is_valid( prioceiling ) ) 595 598 return EINVAL; … … 608 611 switch ( location ) { 609 612 case OBJECTS_ERROR: 610 return EINVAL; 613 return EINVAL; /* impossible to get here */ 611 614 case OBJECTS_REMOTE: 612 615 /* XXX It feels questionable to set the ceiling on a remote mutex. */ 613 return POSIX_MP_NOT_IMPLEMENTED();614 616 return EINVAL; 615 617 case OBJECTS_LOCAL:
Note: See TracChangeset
for help on using the changeset viewer.