Top level spinlock acquire function, spins until get the lock This function will: - Save current interrupt state, then disable interrupts - Spin until lock is acquired or until timeout occurs - Restore interrupt state
- cycles to wait, passing SPINLOCK_WAIT_FOREVER blocks indefinitely
Notes
Spinlocks alone do no constitute true critical sections (as this function reenables interrupts once the spinlock is acquired). For critical sections, use the interface provided by the operating system.
Related Functions
Found 2 other functions taking a spinlock_t
argument:
Top level spinlock unlock function, unlocks a previously locked spinlock This function will: - Save current interrupt state, then disable interrupts - Release the spinlock - Restore interrupt state
Examples
spinlock_acquire() is referenced by 1 libraries and example projects: