Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/mach/gta02/gta02.c

    rd1582b50 rb67ce1ff  
    146146                /* The IRQ handler was found. */
    147147                irq->handler(irq);
    148                 spinlock_unlock(&irq->lock);
     148                irq_spinlock_unlock(&irq->lock, false);
    149149        } else {
    150150                /* Spurious interrupt. */
     
    258258         * Release the lock, call clock() and reacquire the lock again.
    259259         */
    260         spinlock_unlock(&irq->lock);
     260        irq_spinlock_unlock(&irq->lock, false);
    261261        clock();
    262         spinlock_lock(&irq->lock);
     262        irq_spinlock_lock(&irq->lock, false);
    263263}
    264264
Note: See TracChangeset for help on using the changeset viewer.