Changeset b67ce1ff in mainline for kernel/arch/arm32/src/mach/gta02/gta02.c
- Timestamp:
- 2023-01-18T20:47:12Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aaa3b855
- Parents:
- eb630cf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/mach/gta02/gta02.c
reb630cf rb67ce1ff 146 146 /* The IRQ handler was found. */ 147 147 irq->handler(irq); 148 spinlock_unlock(&irq->lock);148 irq_spinlock_unlock(&irq->lock, false); 149 149 } else { 150 150 /* Spurious interrupt. */ … … 258 258 * Release the lock, call clock() and reacquire the lock again. 259 259 */ 260 spinlock_unlock(&irq->lock);260 irq_spinlock_unlock(&irq->lock, false); 261 261 clock(); 262 spinlock_lock(&irq->lock);262 irq_spinlock_lock(&irq->lock, false); 263 263 } 264 264
Note:
See TracChangeset
for help on using the changeset viewer.