only: what is scheduling_s::momentX field type? #6409

This commit is contained in:
rusEFI LLC 2024-04-24 14:10:52 -04:00
parent 4f68f971d3
commit d470a67d33
1 changed files with 2 additions and 0 deletions

View File

@ -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