Macro critical_section

Source
macro_rules! critical_section {
    () => { ... };
    (if { $($p:tt)* } else { $($n:tt)* }) => { ... };
    ($($p:tt)*) => { ... };
}
Expand description

Indicates critical-section is available.

This macro suppresses the provided code because #[cfg(feature = "critical-section")] is not currently active.