Changeset c7ceacf in mainline for kernel/generic/src/main/main.c


Ignore:
Timestamp:
2024-01-15T14:54:17Z (4 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master
Children:
5861b60
Parents:
4760793 (diff), 151c050 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge part of scheduler refactoring changes

A series of changes meant to remove unnecessary spinlock uses and
to improve understandability of the code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/main.c

    r4760793 rc7ceacf  
    285285
    286286        /*
    287          * This call to scheduler() will return to kinit,
     287         * This call to scheduler_run() will return to kinit,
    288288         * starting the thread of kernel threads.
    289289         */
    290         scheduler();
     290        scheduler_run();
    291291        /* not reached */
    292292}
     
    356356
    357357        semaphore_up(&ap_completion_semaphore);
    358         scheduler();
     358        scheduler_run();
    359359        /* not reached */
    360360}
Note: See TracChangeset for help on using the changeset viewer.