mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
3cba2a8a78
Hook this up in Terminal so that the '\a' character generates a beep. Finally emit an '\a' character in the shell line editing code when backspacing at the start of the line.
32 lines
744 B
C++
32 lines
744 B
C++
#pragma once
|
|
|
|
#include <AK/Assertions.h>
|
|
#include <AK/Types.h>
|
|
|
|
class Process;
|
|
class Thread;
|
|
struct RegisterDump;
|
|
|
|
extern Thread* current;
|
|
extern Thread* g_last_fpu_thread;
|
|
extern Thread* g_finalizer;
|
|
extern qword g_uptime;
|
|
|
|
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 donate_to(Thread*, const char* reason);
|
|
static bool context_switch(Thread&);
|
|
static void prepare_to_modify_tss(Thread&);
|
|
static Process* colonel();
|
|
static bool is_active();
|
|
static void beep();
|
|
private:
|
|
static void prepare_for_iret_to_new_process();
|
|
};
|