* Used only on scheduler for optimization of control flows, where the critical * region is already guaranteed. */
| 123 | * region is already guaranteed. |
| 124 | */ |
| 125 | rt_inline void _fast_spin_lock(struct rt_spinlock *lock) |
| 126 | { |
| 127 | rt_hw_spin_lock(&lock->lock); |
| 128 | |
| 129 | RT_SPIN_LOCK_DEBUG(lock); |
| 130 | } |
| 131 | |
| 132 | rt_inline void _fast_spin_unlock(struct rt_spinlock *lock) |
| 133 | { |
no test coverage detected