Changeset 06883e13 in rtems
- Timestamp:
- 08/06/96 16:24:06 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a61f1a46
- Parents:
- b521ae2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/mutex.c
rb521ae2 r06883e13 58 58 TRUE, /* is_initialized */ 59 59 PTHREAD_PROCESS_PRIVATE, /* process_shared */ 60 POSIX_SCHEDULER_M INIMUM_PRIORITY, /* prio_ceiling */60 POSIX_SCHEDULER_MAXIMUM_PRIORITY, /* prio_ceiling */ 61 61 PTHREAD_PRIO_NONE, /* protocol */ 62 62 FALSE /* recursive */ … … 612 612 return EINVAL; 613 613 case OBJECTS_LOCAL: 614 *old_ceiling = the_mutex->Mutex.Attributes.priority_ceiling; 614 615 the_mutex->Mutex.Attributes.priority_ceiling = the_priority; 615 616 _CORE_mutex_Surrender( -
cpukit/posix/src/mutex.c
rb521ae2 r06883e13 58 58 TRUE, /* is_initialized */ 59 59 PTHREAD_PROCESS_PRIVATE, /* process_shared */ 60 POSIX_SCHEDULER_M INIMUM_PRIORITY, /* prio_ceiling */60 POSIX_SCHEDULER_MAXIMUM_PRIORITY, /* prio_ceiling */ 61 61 PTHREAD_PRIO_NONE, /* protocol */ 62 62 FALSE /* recursive */ … … 612 612 return EINVAL; 613 613 case OBJECTS_LOCAL: 614 *old_ceiling = the_mutex->Mutex.Attributes.priority_ceiling; 614 615 the_mutex->Mutex.Attributes.priority_ceiling = the_priority; 615 616 _CORE_mutex_Surrender(
Note: See TracChangeset
for help on using the changeset viewer.