summaryrefslogtreecommitdiff
path: root/Kernel/Scheduler.h
blob: bd6f3f4ddce098c32cedd2010f7e3695e842977b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once

#include <AK/Assertions.h>

class Process;
struct RegisterDump;

extern Process* current;
extern Process* g_last_fpu_process;

class Scheduler {
public:
    static void initialize();
    static void timer_tick(RegisterDump&);
    static bool pick_next();
    static void pick_next_and_switch_now();
    static void switch_now();
    static bool yield();
    static bool context_switch(Process&);
    static void prepare_to_modify_tss(Process&);
    static Process* colonel();
private:
    static void prepare_for_iret_to_new_process();
};

int sched_yield();