| 31 | #define letter_name(n) ('a' + (n) / ((n) >= 26 ? (26 * 2) : 1)), ((n) >= 26 ? 'a' + (n) % 26 : '\0') |
| 32 | |
| 33 | rt_inline void spin_lock(struct rt_spinlock *spinlock) |
| 34 | { |
| 35 | rt_hw_spin_lock(&spinlock->lock); |
| 36 | } |
| 37 | |
| 38 | rt_inline void spin_unlock(struct rt_spinlock *spinlock) |
| 39 | { |
no test coverage detected