From 4d5224ff384b94b86eb88152b963b8aff4855b8f Mon Sep 17 00:00:00 2001 From: ChUrl Date: Mon, 4 Jul 2022 21:24:04 +0200 Subject: [PATCH] enable preemptive switch in pit --- c_os/devices/PIT.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c_os/devices/PIT.cc b/c_os/devices/PIT.cc index bf200a5..5568c6c 100755 --- a/c_os/devices/PIT.cc +++ b/c_os/devices/PIT.cc @@ -85,7 +85,7 @@ void PIT::trigger () { // Preemption if (scheduler.isInitialized()) { - + scheduler.preempt(); }