acl  3.5.3.0
acl_trace.h
浏览该文件的文档.
1 #ifndef ACL_TRACE_INCLUDE_H
2 #define ACL_TRACE_INCLUDE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 /**
9  * 将当前函数的堆栈输出至指定文件中
10  * @param filepath {const char*} 目标文件名
11  */
12 void acl_trace_save(const char *filepath);
13 
14 /**
15  * 将当前函数的堆栈输出至日志中
16  */
17 void acl_trace_info(void);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif
void acl_trace_save(const char *filepath)
void acl_trace_info(void)