Enum rstubs::interrupts::epilog::Epilog
source · pub enum Epilog {
Timer,
Keyboard {
key: char,
},
Assassin,
}
Expand description
The different types of epilogs that can be deferred to the epilog layer.
They are created in the interrupt service routines and enqueued for
execution by the Guard
.
The so called “prologs” of the prolog/epilog model are directly executed
In the ISR and are not part of this object.