Changeset 32441ab7 in rtems


Ignore:
Timestamp:
11/02/99 16:00:37 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5d36b344
Parents:
2cd5444
Message:

Added a comment to indicate that if a task blocked on a priority
based thread queue were to be reinserted based on its new priority,
this is where the logic would go.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/src/threadchangepriority.c

    r2cd5444 r32441ab7  
    8989
    9090  if ( ! _States_Is_ready( the_thread->current_state ) ) {
     91    /*
     92     *  XXX If a task is to be reordered while blocked on a priority
     93     *  XXX priority ordered thread queue, then this is where that
     94     *  XXX should occur.
     95     */
    9196    _ISR_Enable( level );
    9297    return;
  • cpukit/score/src/threadchangepriority.c

    r2cd5444 r32441ab7  
    8989
    9090  if ( ! _States_Is_ready( the_thread->current_state ) ) {
     91    /*
     92     *  XXX If a task is to be reordered while blocked on a priority
     93     *  XXX priority ordered thread queue, then this is where that
     94     *  XXX should occur.
     95     */
    9196    _ISR_Enable( level );
    9297    return;
Note: See TracChangeset for help on using the changeset viewer.