Changeset d5a89a3 in mainline for kernel/generic/src/interrupt
- Timestamp:
- 2019-02-11T22:31:04Z (6 years ago)
- Children:
- aaf9789c
- Parents:
- e3272101 (diff), 4805495 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/interrupt/interrupt.c
re3272101 rd5a89a3 99 99 * 100 100 */ 101 NO_TRACE void exc_dispatch(unsigned int n, istate_t *istate)101 _NO_TRACE void exc_dispatch(unsigned int n, istate_t *istate) 102 102 { 103 103 #if (IVT_ITEMS > 0) … … 159 159 * 160 160 */ 161 NO_TRACE static void exc_undef(unsigned int n, istate_t *istate)161 _NO_TRACE static void exc_undef(unsigned int n, istate_t *istate) 162 162 { 163 163 fault_if_from_uspace(istate, "Unhandled exception %u.", n); … … 165 165 } 166 166 167 static NO_TRACE void167 static _NO_TRACE void 168 168 fault_from_uspace_core(istate_t *istate, const char *fmt, va_list args) 169 169 { … … 185 185 * 186 186 */ 187 NO_TRACE void fault_from_uspace(istate_t *istate, const char *fmt, ...)187 _NO_TRACE void fault_from_uspace(istate_t *istate, const char *fmt, ...) 188 188 { 189 189 va_list args; … … 197 197 * 198 198 */ 199 NO_TRACE void fault_if_from_uspace(istate_t *istate, const char *fmt, ...)199 _NO_TRACE void fault_if_from_uspace(istate_t *istate, const char *fmt, ...) 200 200 { 201 201 if (!istate_from_uspace(istate)) … … 233 233 * 234 234 */ 235 NO_TRACE static int cmd_exc_print(cmd_arg_t *argv)235 _NO_TRACE static int cmd_exc_print(cmd_arg_t *argv) 236 236 { 237 237 bool excs_all;
Note:
See TracChangeset
for help on using the changeset viewer.