From f897cff83fd3c098cda4433488b1649ff3bd4e0e Mon Sep 17 00:00:00 2001 From: "dzzxzz@gmail.com" Date: Wed, 5 Sep 2012 06:28:28 +0000 Subject: [PATCH] fixed a compiling error if RT_DEBUG is defined but RT_DEBUG_CONTEXT_CHECK is defined as 0 git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2270 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- include/rtdebug.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/rtdebug.h b/include/rtdebug.h index abe7b3aa26..3cdc7625b4 100644 --- a/include/rtdebug.h +++ b/include/rtdebug.h @@ -73,7 +73,10 @@ rt_kprintf("Function[%s] shall not used in ISR\n", __FUNCTION__);\ RT_ASSERT(0)}\ rt_hw_interrupt_enable(level);} while (0) +#else +#define RT_DEBUG_NOT_IN_INTERRUPT #endif + #else /* RT_DEBUG */ #define RT_ASSERT(EX) -- GitLab