Changeset 333f942 in rtems for cpukit/score/include/rtems/score/schedulerpriorityimpl.h
- Timestamp:
- 07/10/14 10:49:43 (9 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 27783f6
- Parents:
- 76ad756c
- git-author:
- Sebastian Huber <sebastian.huber@…> (07/10/14 10:49:43)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (07/10/14 13:29:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/include/rtems/score/schedulerpriorityimpl.h
r76ad756c r333f942 162 162 { 163 163 Priority_Control index = _Priority_bit_map_Get_highest( bit_map ); 164 165 return _Chain_First( &ready_queues[ index ] ); 164 Chain_Node *first = _Chain_First( &ready_queues[ index ] ); 165 166 _Assert( first != _Chain_Tail( &ready_queues[ index ] ) ); 167 168 return first; 166 169 } 167 170
Note: See TracChangeset
for help on using the changeset viewer.