acl/lib_acl/include/stdlib/unix/acl_trace.h
2014-12-07 23:48:11 +08:00

24 lines
356 B
C

#ifndef ACL_TRACE_INCLUDE_H
#define ACL_TRACE_INCLUDE_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* 将当前函数的堆栈输出至指定文件中
* @param filepath {const char*} 目标文件名
*/
void acl_trace_save(const char *filepath);
/**
* 将当前函数的堆栈输出至日志中
*/
void acl_trace_info(void);
#ifdef __cplusplus
}
#endif
#endif