Changeset f22dc820 in mainline for kernel/generic/src/proc/thread.c


Ignore:
Timestamp:
2012-06-20T23:52:58Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
380553c, baf8fbb
Parents:
6eef3c4
Message:

Honour the prohibition of migration also in thread_ready().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/thread.c

    r6eef3c4 rf22dc820  
    277277       
    278278        cpu_t *cpu;
    279         if (thread->wired) {
     279        if (thread->wired || thread->nomigrate || thread->fpu_context_engaged) {
    280280                ASSERT(thread->cpu != NULL);
    281281                cpu = thread->cpu;
Note: See TracChangeset for help on using the changeset viewer.