Changeset 1457 for trunk/src/emx/include/InnoTekLIBC/logstrict.h
- Timestamp:
- Sep 5, 2004, 12:56:05 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/logstrict.h
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r1456 r1457 51 51 * the default logging device. 52 52 */ 53 #ifdef DEBUG_LOGGING54 53 #ifndef __LIBC_LOG_INSTANCE 55 54 #define __LIBC_LOG_INSTANCE NULL 56 55 #endif 57 #endif 56 58 57 59 58 /** … … 61 60 * number before including this file. 62 61 */ 63 #ifdef DEBUG_LOGGING64 62 #ifndef __LIBC_LOG_GROUP 65 63 #define __LIBC_LOG_GROUP 0 66 64 #error "__LIBC_LOG_GROUP must be defined before including InnoTekLIBC/log.h" 67 65 #endif 68 #endif 66 67 68 /** Macro to, in release mode too, log a generic message within a function. */ 69 #define LIBCLOG_REL(...) \ 70 __libc_LogMsg(~0, __LIBC_LOG_INSTANCE, __LIBC_LOG_GROUP, __PRETTY_FUNCTION__, __VA_ARGS__) 71 69 72 70 73 /** Macro to log a function entry. */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.