Kernel: Rename RegisterDump => RegisterState

This commit is contained in:
Andreas Kling 2020-02-16 00:15:37 +01:00
commit 0341ddc5eb
Notes: sideshowbarker 2024-07-19 09:17:41 +09:00
10 changed files with 79 additions and 79 deletions

View file

@ -34,7 +34,7 @@
class Process;
class Thread;
class WaitQueue;
struct RegisterDump;
struct RegisterState;
struct SchedulerData;
extern Thread* current;
@ -48,7 +48,7 @@ extern SchedulerData* g_scheduler_data;
class Scheduler {
public:
static void initialize();
static void timer_tick(RegisterDump&);
static void timer_tick(RegisterState&);
static bool pick_next();
static void pick_next_and_switch_now();
static void switch_now();