Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/synch/spinlock.h

    r8df5f20 r543662b  
    103103 * @param lock  Pointer to spinlock_t structure.
    104104 */
    105 _NO_TRACE static inline void spinlock_lock(spinlock_t *lock)
     105NO_TRACE static inline void spinlock_lock(spinlock_t *lock)
    106106{
    107107        preemption_disable();
     
    115115 * @param lock  Pointer to spinlock_t structure.
    116116 */
    117 _NO_TRACE static inline void spinlock_unlock(spinlock_t *lock)
     117NO_TRACE static inline void spinlock_unlock(spinlock_t *lock)
    118118{
    119119        atomic_flag_clear_explicit(&lock->flag, memory_order_release);
Note: See TracChangeset for help on using the changeset viewer.