38 #if (defined(NDEBUG) || defined(NO_DP))
39 #define dsmAssert( assertion )
40 #define ASSERT(condition)
44 #define DSM_DP_LEVEL 0
46 #define dsmAssert( assertion ) assert assertion
47 #define ASSERT(condition) assert(condition);
49 #define DSM_DP_LEVEL ( 1 )
67 #define dsmDP1( x ) if (DBG_ErrorPrintfFunc) DBG_ErrorPrintfFunc x
68 #define ERRPRINT(x, ...) \
69 if (DBG_ErrorPrintfFunc) DBG_ErrorPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
70 #define DBGERROR(f,x, ...) \
71 if (DBG_ErrorPrintfFunc && (f & dsmDbgState)) DBG_ErrorPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
74 #define ERRPRINT(x, ...)
75 #define DBGERROR(f,x, ...)
88 #define dsmDP2( x ) if (DBG_WarnPrintfFunc) DBG_WarnPrintfFunc x
89 #define DBGWARN(f,x, ...) \
90 if (DBG_WarnPrintfFunc && (f & dsmDbgState)) DBG_WarnPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
93 #define DBGWARN(f,x, ...)
105 #if DSM_DP_LEVEL >= 3
106 #define dsmDP3( x ) if (DBG_DebugPrintfFunc) DBG_DebugPrintfFunc x
107 #define DBGPRINT(f,x, ...) \
108 if (DBG_DebugPrintfFunc && (f & dsmDbgState)) DBG_DebugPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
111 #define DBGPRINT(f,x, ...)
124 #if DSM_DP_LEVEL >= 4
125 #define dsmDP4( x ) if (DBG_InfoPrintfFunc) DBG_InfoPrintfFunc x
126 #define DBGINFO(f,x, ...) \
127 if (DBG_InfoPrintfFunc && (f & dsmDbgState)) DBG_InfoPrintfFunc("%s:%d " x "\n",__FUNCTION__,__LINE__, ##__VA_ARGS__);
131 #define DBGINFO(f,x, ...)
141 #if (!defined(NDEBUG) && !defined(NO_DP))
142 extern clDsmPrintFunc_t DBG_ErrorPrintfFunc;
143 extern clDsmPrintFunc_t DBG_WarnPrintfFunc;
144 extern clDsmPrintFunc_t DBG_DebugPrintfFunc;
145 extern clDsmPrintFunc_t DBG_InfoPrintffunc;
146 extern U32BIT dsmDbgState;