* @brief Initialize a static spinlock object. * * @param lock is a pointer to the spinlock to initialize. */
| 28 | * @param lock is a pointer to the spinlock to initialize. |
| 29 | */ |
| 30 | void rt_spin_lock_init(struct rt_spinlock *lock) |
| 31 | { |
| 32 | RT_UNUSED(lock); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * @brief This function will lock the spinlock, will lock the thread scheduler. |
no outgoing calls
no test coverage detected