Attribute Macro sel4::sel4_cfg_struct

#[sel4_cfg_struct]
Expand description

Allows a struct’s fields to use the sel4_cfg attribute.

§Example

#[sel4_cfg_struct]
struct Foo {
    #[sel4_cfg(KERNEL_MCS)]
    bar: bool,
}