summaryrefslogtreecommitdiff
path: root/Kernel/Scheduler.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-07-25 19:50:31 +0200
committerAndreas Kling <kling@serenityos.org>2021-07-26 00:39:10 +0200
commit06104a42275288f7456f0112af330107019060b9 (patch)
tree6542c31480dab17745a828b0cd3bb196e65a31d0 /Kernel/Scheduler.h
parentcfce92f639d720c54207473017d3a151feae6888 (diff)
downloadserenity-06104a42275288f7456f0112af330107019060b9.zip
Kernel: Remove unused Scheduler::yield_from_critical()
Diffstat (limited to 'Kernel/Scheduler.h')
-rw-r--r--Kernel/Scheduler.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Scheduler.h b/Kernel/Scheduler.h
index 08bd9f88ed..9a17758500 100644
--- a/Kernel/Scheduler.h
+++ b/Kernel/Scheduler.h
@@ -38,7 +38,6 @@ public:
[[noreturn]] static void start();
static bool pick_next();
static bool yield();
- static void yield_from_critical();
static bool context_switch(Thread*);
static void enter_current(Thread& prev_thread, bool is_first);
static void leave_on_first_switch(u32 flags);