From d470a67d33ca1e04ba91360cd3737f0a78eeb495 Mon Sep 17 00:00:00 2001 From: rusEFI LLC Date: Wed, 24 Apr 2024 14:10:52 -0400 Subject: [PATCH] only: what is scheduling_s::momentX field type? #6409 --- firmware/controllers/algo/engine.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firmware/controllers/algo/engine.h b/firmware/controllers/algo/engine.h index cc1597378e..be7b4c3a7b 100644 --- a/firmware/controllers/algo/engine.h +++ b/firmware/controllers/algo/engine.h @@ -233,9 +233,11 @@ public: // a pointer with interface type would make this code nicer but would carry extra runtime // cost to resolve pointer, we use instances as a micro optimization #if EFI_SIGNAL_EXECUTOR_ONE_TIMER + // while theoretically PROD could be using EFI_SIGNAL_EXECUTOR_SLEEP, as of 2024 all PROD uses SingleTimerExecutor SingleTimerExecutor executor; #endif #if EFI_SIGNAL_EXECUTOR_SLEEP + // at the moment this one is used exclusively by x86 simulator it should theoretically be possible to make it available in embedded if needed SleepExecutor executor; #endif #if EFI_UNIT_TEST