Ignore:
File:
1 edited

Legend:

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

    rd1582b50 rb67ce1ff  
    9292         * Release the lock, call clock() and reacquire the lock again.
    9393         */
    94         spinlock_unlock(&irq->lock);
     94        irq_spinlock_unlock(&irq->lock, false);
    9595        clock();
    96         spinlock_lock(&irq->lock);
     96        irq_spinlock_lock(&irq->lock, false);
    9797}
    9898
     
    156156                /* The IRQ handler was found. */
    157157                irq->handler(irq);
    158                 spinlock_unlock(&irq->lock);
     158                irq_spinlock_unlock(&irq->lock, false);
    159159        } else {
    160160                /* Spurious interrupt. */
Note: See TracChangeset for help on using the changeset viewer.