- Timestamp:
- 2010-11-26T01:26:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b0f4bb
- Parents:
- 04357767
- Location:
- kernel/generic/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/interrupt.h
r04357767 r9ac2013 37 37 38 38 #include <arch/interrupt.h> 39 #include <print.h> 39 40 #include <typedefs.h> 40 41 #include <proc/task.h> … … 57 58 extern exc_table_t exc_table[]; 58 59 59 extern void fault_if_from_uspace(istate_t *, const char *, ...); 60 extern void fault_if_from_uspace(istate_t *, const char *, ...) 61 PRINTF_ATTRIBUTE(2, 3); 60 62 extern iroutine_t exc_register(unsigned int, const char *, bool, iroutine_t); 61 63 extern void exc_dispatch(unsigned int, istate_t *); -
kernel/generic/include/panic.h
r04357767 r9ac2013 37 37 38 38 #include <typedefs.h> 39 #include <print.h> 39 40 40 41 #define panic(fmt, ...) \ … … 62 63 63 64 extern void panic_common(panic_category_t, struct istate *, int, 64 uintptr_t, const char *, ...) __attribute__ ((noreturn)); 65 uintptr_t, const char *, ...) __attribute__ ((noreturn)) 66 PRINTF_ATTRIBUTE(5, 6); 65 67 66 68 #endif
Note:
See TracChangeset
for help on using the changeset viewer.