Changeset dd218ea in mainline for kernel/generic/src/proc/scheduler.c


Ignore:
Timestamp:
2023-04-15T16:30:15Z (19 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b2ec5cf
Parents:
c680333
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-03-28 16:12:16)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-04-15 16:30:15)
Message:

Remove unnecessary thread_t::wired

There's already thread_t::nomigrate doing the same thing

File:
1 edited

Legend:

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

    rc680333 rdd218ea  
    589589                                irq_spinlock_lock(&thread->lock, false);
    590590
    591                                 if ((!thread->wired) && (!thread->stolen) &&
     591                                if ((!thread->stolen) &&
    592592                                    (!thread->nomigrate) &&
    593593                                    (!thread->fpu_context_engaged)) {
Note: See TracChangeset for help on using the changeset viewer.