Scheduler: Fix event numbers

This commit is contained in:
wheremyfoodat 2025-02-11 20:53:43 +02:00 committed by GitHub
parent b17284b23a
commit 59dd4433cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@ struct Scheduler {
RunDSP = 2, // Make the emulated DSP run for one audio frame
ThreadWakeup = 3, // A thread is going to wake up and we need to reschedule threads
SignalY2R = 4, // Signal that a Y2R conversion has finished
Panic = 4, // Dummy event that is always pending and should never be triggered (Timestamp = UINT64_MAX)
Panic = 5, // Dummy event that is always pending and should never be triggered (Timestamp = UINT64_MAX)
TotalNumberOfEvents // How many event types do we have in total?
};
static constexpr usize totalNumberOfEvents = static_cast<usize>(EventType::TotalNumberOfEvents);
@ -89,4 +89,4 @@ struct Scheduler {
return (arm11Clock * s64(ns)) / 1000000000;
}
};
};