acl  3.5.3.0
acl_core_limit.h
浏览该文件的文档.
1 #ifndef ACL_CORE_LIMIT_INCLUDE_H
2 #define ACL_CORE_LIMIT_INCLUDE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include "../acl_define.h"
9 #ifdef ACL_UNIX
10 
11 /**
12  * 调用此函数设置程序崩溃时产生的 core 文件的最大值
13  * @param max {long long int} 根据 max 的值范围不同,生成 core 规则有所不同:
14  * 1) 0:禁止生成 core 文件
15  * 2) < 0:生成 core 文件,且不限制 core 文件生成大小
16  * 3) > 0:生成 core 文件,且 core 文件大小由 max 决定
17  */
18 void acl_set_core_limit(long long int max);
19 
20 #endif /* ACL_UNIX */
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif