Changeset 1d9d044 in rtems
- Timestamp:
- 09/17/96 21:33:07 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- cc51de91
- Parents:
- 41be2e8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/src/coremutex.c
r41be2e8 r1d9d044 73 73 &the_mutex->Wait_queue, 74 74 the_class, 75 _CORE_mutex_Is_ priority( the_mutex_attributes ) ?76 THREAD_QUEUE_DISCIPLINE_ PRIORITY : THREAD_QUEUE_DISCIPLINE_FIFO,75 _CORE_mutex_Is_fifo( the_mutex_attributes ) ? 76 THREAD_QUEUE_DISCIPLINE_FIFO : THREAD_QUEUE_DISCIPLINE_PRIORITY, 77 77 STATES_WAITING_FOR_MUTEX, 78 78 proxy_extract_callout, -
cpukit/score/src/coremutex.c
r41be2e8 r1d9d044 73 73 &the_mutex->Wait_queue, 74 74 the_class, 75 _CORE_mutex_Is_ priority( the_mutex_attributes ) ?76 THREAD_QUEUE_DISCIPLINE_ PRIORITY : THREAD_QUEUE_DISCIPLINE_FIFO,75 _CORE_mutex_Is_fifo( the_mutex_attributes ) ? 76 THREAD_QUEUE_DISCIPLINE_FIFO : THREAD_QUEUE_DISCIPLINE_PRIORITY, 77 77 STATES_WAITING_FOR_MUTEX, 78 78 proxy_extract_callout,
Note: See TracChangeset
for help on using the changeset viewer.