Changeset 22f7769 in mainline for src/debug/print.c
- Timestamp:
- 2005-10-17T23:31:41Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4b2c872d
- Parents:
- 75eacab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/debug/print.c
r75eacab r22f7769 286 286 va_start(ap, fmt); 287 287 288 irqpri = cpu_priority_high();288 irqpri = interrupts_disable(); 289 289 spinlock_lock(&printflock); 290 290 … … 401 401 out: 402 402 spinlock_unlock(&printflock); 403 cpu_priority_restore(irqpri);403 interrupts_restore(irqpri); 404 404 405 405 va_end(ap);
Note:
See TracChangeset
for help on using the changeset viewer.