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
Notes: sideshowbarker 2024-07-19 15:50:15 +09:00

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;