forked from Imagelibrary/rtems
score: _Scheduler_priority_Ready_queue_first()
Remove superfluous check since a ready thread must exist.
This commit is contained in:
@@ -148,10 +148,7 @@ RTEMS_INLINE_ROUTINE Thread_Control *_Scheduler_priority_Ready_queue_first(
|
||||
{
|
||||
Priority_Control index = _Priority_bit_map_Get_highest();
|
||||
|
||||
if ( !_Chain_Is_empty( &the_ready_queue[ index ] ) )
|
||||
return (Thread_Control *) _Chain_First( &the_ready_queue[ index ] );
|
||||
|
||||
return NULL;
|
||||
return (Thread_Control *) _Chain_First( &the_ready_queue[ index ] );
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user