mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
Move timer tick handling into Scheduler.
This commit is contained in:
parent
27fded7002
commit
ac1d12465f
Notes:
sideshowbarker
2024-07-19 18:31:59 +09:00
Author: https://github.com/awesomekling
Commit: ac1d12465f
3 changed files with 56 additions and 59 deletions
|
@ -1,20 +1,24 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Assertions.h>
|
||||
|
||||
class Process;
|
||||
struct RegisterDump;
|
||||
|
||||
extern Process* current;
|
||||
|
||||
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_for_iret_to_new_process();
|
||||
static void prepare_to_modify_tss(Process&);
|
||||
private:
|
||||
static void prepare_for_iret_to_new_process();
|
||||
};
|
||||
|
||||
int sched_yield();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue