X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=cfg%2Fdebug.h;h=fe8481f02f138ec9a2db4229276bc8e4d98ced26;hb=ff16c7e3fd2184d58a87d5fe1576cd246ecb719e;hp=af5f4f8ae27600c683dfebb2174ca36972fe9ae6;hpb=6bf26ad78b32851d9dd56fbf68356bcbdded590e;p=bertos.git diff --git a/cfg/debug.h b/cfg/debug.h index af5f4f8a..fe8481f0 100755 --- a/cfg/debug.h +++ b/cfg/debug.h @@ -17,6 +17,18 @@ /*#* *#* $Log$ + *#* Revision 1.5 2005/11/04 16:09:03 bernie + *#* Doxygen workaround. + *#* + *#* Revision 1.4 2005/07/03 15:18:52 bernie + *#* Typo. + *#* + *#* Revision 1.3 2005/06/27 21:23:55 bernie + *#* Rename cfg/config.h to appconfig.h. + *#* + *#* Revision 1.2 2005/04/11 19:10:27 bernie + *#* Include top-level headers from cfg/ subdir. + *#* *#* Revision 1.1 2005/04/11 19:04:13 bernie *#* Move top-level headers to cfg/ subdir. *#* @@ -76,7 +88,7 @@ #endif #endif #else /* !OS_HOSTED */ - #include + #include #endif /* !OS_HOSTED */ @@ -98,7 +110,7 @@ * This preprocessor symbol is defined only in debug builds. * * The build infrastructure must arrange for _DEBUG to - * be prepredefined for all source files being compiled. + * be predefined for all source files being compiled. * * This is compatible with the Microsoft convention for * the default Debug and Release targets. @@ -133,7 +145,7 @@ /*! * This macro can be used to conditionally exclude one or more * statements conditioned on \c _DEBUG, avoiding the clutter - * of #ifdef/#endif pairs. + * of ifdef/endif pairs. * * \code * struct FooBar @@ -185,8 +197,8 @@ #define ASSERT_VALID_PTR_OR_NULL(p) ASSERT((((p) == NULL) || ((unsigned long)(p) >= 0x200))) #else /* !OS_HOSTED */ - #include /* CONFIG_KDEBUG_ASSERT_NO_TEXT */ - #include /* CPU_HARVARD */ + #include /* CONFIG_KDEBUG_ASSERT_NO_TEXT */ + #include /* CPU_HARVARD */ /* These are implemented in drv/kdebug.c */ void kdbg_init(void);