acl/lib_acl/include/stdlib/unix/acl_trace.h
zsxxsz cf2528eb7c 完善了非阻塞IO的SSL功能;将 samples 移到 lib_acl 目录下
完善了非阻塞IO的SSL功能;将 acl/samples/ 下的示例分别移到 lib_acl 及 lib_protocol 目录下
2014-11-30 21:15:35 +08:00

25 lines
397 B
C

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