Changeset dc747e3 in mainline for generic/src/interrupt
- Timestamp:
- 2005-12-15T10:27:59Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7dd2561
- Parents:
- 3fc03fd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/interrupt/interrupt.c
r3fc03fd rdc747e3 41 41 } exc_table[IVT_ITEMS]; 42 42 43 static spinlock_t exctbl_lock;43 SPINLOCK_INITIALIZE(exctbl_lock); 44 44 45 45 /** Register exception handler … … 125 125 int i; 126 126 127 spinlock_initialize(&exctbl_lock, "exctbl_lock");128 129 127 for (i=0;i < IVT_ITEMS; i++) 130 128 exc_register(i, "undef", exc_undef);
Note:
See TracChangeset
for help on using the changeset viewer.