Changeset cb08279 in mainline
- Timestamp:
- 2007-12-16T18:35:23Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c0697c4c
- Parents:
- d5cdffe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/panic.h
rd5cdffe rcb08279 37 37 38 38 #ifdef CONFIG_DEBUG 39 # define panic(format, ...) panic_printf("Kernel panic in %s() at %s on line %d: " format, __func__, __FILE__, __LINE__, ##__VA_ARGS__); 39 #define panic(format, ...) \ 40 panic_printf("Kernel panic in %s() at %s on line %d: " format, __func__, \ 41 __FILE__, __LINE__, ##__VA_ARGS__); 40 42 #else 41 # define panic(format, ...) panic_printf("Kernel panic: " format, ##__VA_ARGS__); 43 #define panic(format, ...) \ 44 panic_printf("Kernel panic: " format, ##__VA_ARGS__); 42 45 #endif 43 46
Note:
See TracChangeset
for help on using the changeset viewer.