\file critical_section.h Critical Section API for short-lived mutual exclusion safe for IRQ and multi-core A critical section is non-reentrant, and provides mutual exclusion using a spin-lock to prevent access from the other core, and from (higher priority) interrupts on the same core. It does the former using a spin lock and the latter by disabling interrupts on the calling core. Because interrupts are disabled when a critical_section is owned, uses of the critical_section should be as short as possible.
De-Initialise a critical_section created by the critical_section_init method This method is only used to free the associated spin lock allocated via the critical_section_init method (it should not be used to de-initialize a spin lock created via critical_section_init_with_lock_num). After this call, the critical section is invalid
Initialise a critical_section structure allowing the system to assign a spin lock number The critical section is initialized ready for use, and will use a (possibly shared) spin lock number assigned by the system. Note that in general it is unlikely that you would be nesting critical sections, however if you do so you *must* use critical_section_init_with_lock_num to ensure that the spin locks used are different.
Examples
critical_section is referenced by 1 libraries and example projects: