Changeset 6ce40059 in mainline
- Timestamp:
- 2008-12-16T18:55:24Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4406fd65
- Parents:
- 699743c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/debug.h
r699743c r6ce40059 64 64 #endif 65 65 66 /** Extensive debugging output macro66 /** Extensive logging output macro 67 67 * 68 * If CONFIG_ EDEBUG is set, the LOG() macro68 * If CONFIG_LOG is set, the LOG() macro 69 69 * will print whatever message is indicated plus 70 70 * an information about the location. … … 72 72 */ 73 73 74 #ifdef CONFIG_ EDEBUG74 #ifdef CONFIG_LOG 75 75 # define LOG(format, ...) \ 76 76 printf("%s() at %s:%u: " format "\n", __func__, __FILE__, \ … … 80 80 #endif 81 81 82 /** Extensive debugging execute macro82 /** Extensive logging execute macro 83 83 * 84 * If CONFIG_ EDEBUG is set, the LOG_EXEC() macro84 * If CONFIG_LOG is set, the LOG_EXEC() macro 85 85 * will print an information about calling a given 86 86 * function and call it. … … 88 88 */ 89 89 90 #ifdef CONFIG_ EDEBUG90 #ifdef CONFIG_LOG 91 91 # define LOG_EXEC(fnc) \ 92 92 { \
Note:
See TracChangeset
for help on using the changeset viewer.