Changeset e1d93e3 in mainline
- Timestamp:
- 2023-08-02T14:51:11Z (17 months ago)
- Branches:
- ticket/834-toolchain-update
- Children:
- 320762a
- Parents:
- 0557618
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/interrupt/interrupt.c
r0557618 re1d93e3 58 58 #include <trace.h> 59 59 60 /* 61 * If IVT_ITEMS is zero (e.g. for special/abs32le) we hide completely any 62 * access to the exception table array and panic if the function is called 63 * at all. It also silences (correct) compiler warnings about possible 64 * out-of-bound array access. 65 */ 66 60 67 exc_table_t exc_table[IVT_ITEMS]; 61 68 IRQ_SPINLOCK_INITIALIZE(exctbl_lock); … … 77 84 #if (IVT_ITEMS > 0) 78 85 assert(n < IVT_ITEMS); 79 #endif80 86 81 87 irq_spinlock_lock(&exctbl_lock, true); … … 91 97 92 98 return old; 99 #else 100 panic("No space for any exception handler, cannot register."); 101 #endif 93 102 } 94 103 … … 103 112 #if (IVT_ITEMS > 0) 104 113 assert(n < IVT_ITEMS); 105 #endif106 114 107 115 /* Account user cycles */ … … 152 160 irq_spinlock_unlock(&THREAD->lock, false); 153 161 } 162 #else 163 panic("No space for any exception handler, yet we want to handle some exception."); 164 #endif 154 165 } 155 166
Note:
See TracChangeset
for help on using the changeset viewer.