2018-11-07 22:15:02 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Assertions.h>
|
2019-04-14 01:29:14 +02:00
|
|
|
#include <AK/Types.h>
|
2019-07-19 17:21:13 +02:00
|
|
|
#include <AK/Function.h>
|
|
|
|
#include <AK/IntrusiveList.h>
|
2018-11-08 00:24:59 +01:00
|
|
|
|
2018-11-07 22:15:02 +01:00
|
|
|
class Process;
|
2019-03-23 22:03:17 +01:00
|
|
|
class Thread;
|
2018-11-08 00:24:59 +01:00
|
|
|
struct RegisterDump;
|
2019-08-07 20:43:54 +02:00
|
|
|
struct SchedulerData;
|
2018-11-07 22:15:02 +01:00
|
|
|
|
2019-03-23 22:03:17 +01:00
|
|
|
extern Thread* current;
|
|
|
|
extern Thread* g_last_fpu_thread;
|
|
|
|
extern Thread* g_finalizer;
|
2019-07-03 21:17:35 +02:00
|
|
|
extern u64 g_uptime;
|
2019-08-07 20:43:54 +02:00
|
|
|
extern SchedulerData* g_scheduler_data;
|
2018-11-07 22:15:02 +01:00
|
|
|
|
|
|
|
class Scheduler {
|
|
|
|
public:
|
|
|
|
static void initialize();
|
2018-11-08 00:24:59 +01:00
|
|
|
static void timer_tick(RegisterDump&);
|
2018-11-07 22:15:02 +01:00
|
|
|
static bool pick_next();
|
|
|
|
static void pick_next_and_switch_now();
|
|
|
|
static void switch_now();
|
|
|
|
static bool yield();
|
2019-03-23 22:03:17 +01:00
|
|
|
static bool donate_to(Thread*, const char* reason);
|
|
|
|
static bool context_switch(Thread&);
|
|
|
|
static void prepare_to_modify_tss(Thread&);
|
2019-02-04 10:28:12 +01:00
|
|
|
static Process* colonel();
|
2019-02-06 15:05:47 +01:00
|
|
|
static bool is_active();
|
2019-05-15 21:40:41 +02:00
|
|
|
static void beep();
|
2019-05-28 11:53:16 +02:00
|
|
|
|
2019-07-19 17:21:13 +02:00
|
|
|
template<typename Callback>
|
2019-08-07 20:43:54 +02:00
|
|
|
static inline IterationDecision for_each_runnable(Callback);
|
2019-07-19 17:21:13 +02:00
|
|
|
|
|
|
|
template<typename Callback>
|
2019-08-07 20:43:54 +02:00
|
|
|
static inline IterationDecision for_each_nonrunnable(Callback);
|
2019-07-19 17:21:13 +02:00
|
|
|
|
|
|
|
static void init_thread(Thread& thread);
|
|
|
|
static void update_state_for_thread(Thread& thread);
|
|
|
|
|
2018-11-08 00:24:59 +01:00
|
|
|
private:
|
|
|
|
static void prepare_for_iret_to_new_process();
|
2018-11-07 22:15:02 +01:00
|
|
|
};
|