Fix for compilers without variadic macros support.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 23 Feb 2006 08:33:04 +0000 (08:33 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 23 Feb 2006 08:33:04 +0000 (08:33 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@540 38d2e660-2303-0410-9eaa-f027e97ec537

cfg/debug.h

index 38029081aa5ae942f1f5c918223b1a34fae5d3e0..f040b37f831e9057181363c84cdf667f5396effe 100755 (executable)
@@ -17,6 +17,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.8  2006/02/23 08:33:04  bernie
+ *#* Fix for compilers without variadic macros support.
+ *#*
  *#* Revision 1.7  2006/02/20 02:01:56  bernie
  *#* Depend on cfg/os.h.
  *#*
                #endif /* ASSERT */
                #define ASSERT2(x, help)  ASSERT(help && x)
 
-               /*!
-                * Check that the given pointer is not NULL or pointing to raw memory.
+               /**
+                * Check that the given pointer is either NULL or pointing to valid memory.
                 *
                 * The assumption here is that valid pointers never point to low
                 * memory regions.  This helps catching pointers taken from
                 */
                #define ASSERT_VALID_PTR(p)  ASSERT((unsigned long)(p) > 0x200)
 
+               /**
+                * Check that the given pointer is not pointing to invalid memory.
+                *
+                * \see ASSERT_VALID_PTR()
+                */
                #define ASSERT_VALID_PTR_OR_NULL(p)  ASSERT((((p) == NULL) || ((unsigned long)(p) >= 0x200)))
 
                #if !CONFIG_KDEBUG_DISABLE_TRACE
-                       #define TRACE  kporintf("%s()\n", __func__)
+                       #define TRACE  kprintf("%s()\n", __func__)
                        #define TRACEMSG(msg,...) kprintf("%s(): " msg, __func__, ## __VA_ARGS__)
                #else
                        #define TRACE  do {} while(0)
        #define ASSERT_VALID_PTR_OR_NULL(p)  ((void)0)
        #define ASSERT_VALID_OBJ(_t, _o)     ((void)0)
        #define TRACE                        do {} while (0)
-       #define TRACEMSG(x,...)              do {} while (0)
+       #if COMPILER_VARIADIC_MACROS
+               #define TRACEMSG(x, ...)         do {} while (0)
+       #else
+               INLINE void TRACEMSG(UNUSED_ARG(const char *, msg), ...)
+               {
+                       /* NOP */
+               }
+       #endif
 
        #define DECLARE_WALL(name, size)     /* nothing */
        #define FWD_DECLARE_WALL(name, size) /* nothing */
        INLINE void kputs(UNUSED_ARG(const char *, str)) { /* nop */ }
        INLINE void kdump(UNUSED_ARG(const void *, buf), UNUSED_ARG(size_t, len)) { /* nop */ }
 
-       #ifdef __cplusplus
+       #if defined(__cplusplus) && COMPILER_VARIADIC_MACROS
                /* G++ can't inline functions with variable arguments... */
                #define kprintf(fmt,...) do { (void)(fmt); } while(0)
        #else
                /* ...but GCC can. */
-               INLINE void kprintf(UNUSED_ARG(const char *, fmt), ...) { /* nop */ }
+           INLINE void kprintf(UNUSED_ARG(const char *, fmt), ...) { /* nop */ }
        #endif
 
 #endif /* _DEBUG */