增加一些debug日志

This commit is contained in:
崔一鸣
2019-06-05 11:32:11 +08:00
parent 03a5f7ec6c
commit 0ccc62fe08
3 changed files with 55 additions and 21 deletions

View File

@@ -22,6 +22,10 @@
#define KNI_SYMBOL_MAX 64
#define KNI_DOMAIN_MAX 256
#ifndef MAX
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef MIN
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif