embedded_runtime/runtime.rs
1//! Defines required runtime-specific function stubs
2
3extern "Rust" {
4 /// Blocks until an event occurs (may wake spuriously)
5 ///
6 /// # Important
7 /// Events must not be lost. If an event has occurred between the last invocation and this invocation, this function
8 /// must not block.
9 pub(crate) fn _runtime_waitforevent_TBFzxdKN();
10 /// Raises an event
11 ///
12 /// # Important
13 /// Events must not be lost. If an event is sent, but the receiver is not currently waiting, it must be retained until
14 /// the receiver tries to wait again.
15 ///
16 /// # Interrupt Safety
17 /// This function must be interrupt-safe.
18 pub(crate) fn _runtime_sendevent_3YSaPmB7();
19}