1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

Kernel: Increase default time slice to 20ms.

This commit is contained in:
Andreas Kling 2019-02-07 11:53:45 +01:00
parent dc7f257c01
commit ee2bb98b88

View file

@ -8,7 +8,7 @@
//#define LOG_EVERY_CONTEXT_SWITCH
//#define SCHEDULER_DEBUG
static const dword time_slice = 5; // *10 = 50ms
static const dword time_slice = 20; // *1ms
Process* current;
Process* g_last_fpu_process;