diff options
Diffstat (limited to 'os/kernel/include/chdebug.h')
-rw-r--r-- | os/kernel/include/chdebug.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/os/kernel/include/chdebug.h b/os/kernel/include/chdebug.h index e6d6f231c..e29b095e8 100644 --- a/os/kernel/include/chdebug.h +++ b/os/kernel/include/chdebug.h @@ -91,6 +91,8 @@ typedef struct { *
* @param[in] c the condition to be verified to be true
* @param[in] func the undecorated function name
+ *
+ * @api
*/
#define chDbgCheck(c, func) { \
if (!(c)) \
@@ -117,6 +119,8 @@ typedef struct { * @param[in] c the condition to be verified to be true
* @param[in] m the text message
* @param[in] r a remark string
+ *
+ * @api
*/
#define chDbgAssert(c, m, r) { \
if (!(c)) \
|