Skip to main content

SYSCALL_FIRED

Static SYSCALL_FIRED 

Source
pub static mut SYSCALL_FIRED: UnsafeCell<usize>
Expand description

This is used in the syscall handler. When set to 1 this means the svc_handler was called. Marked pub because it is used in the cortex-m* specific handler.

Because this is a global static mut variable, we can only access it from inline assembly.