mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
cf2528eb7c
完善了非阻塞IO的SSL功能;将 acl/samples/ 下的示例分别移到 lib_acl 及 lib_protocol 目录下
25 lines
397 B
C
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
|