1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

Kernel: Rename queue_runnable_thread() => enqueue_runnable_thread()

This commit is contained in:
Andreas Kling 2021-08-08 14:19:55 +02:00
parent 0910979dec
commit 2be368e4c4
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ public:
static Thread& pull_next_runnable_thread();
static Thread* peek_next_runnable_thread();
static bool dequeue_runnable_thread(Thread&, bool = false);
static void queue_runnable_thread(Thread&);
static void enqueue_runnable_thread(Thread&);
static void dump_scheduler_state(bool = false);
static bool is_initialized();
static TotalTimeScheduled get_total_time_scheduled();