Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试截断我的应用程序的核心文件大小。我尝试使用setrlimit()函数但没有运气。
setrlimit()
观察: 我设置rlim_cur = 270which is 270 * 1024 = 276480 bytes,如果核心文件小于276480 bytes只有那么核心文件正在生成。276480 bytes不会生成超过 size 的核心文件。当我设置rlim_cur = RLIM_INFINITY所有核心文件时,都会生成。基本上我无法将文件大小截断为所需大小。请建议。
rlim_cur = 270
270 * 1024 = 276480 bytes
276480 bytes
rlim_cur = RLIM_INFINITY
提前致谢。
试试这个和这个,这些链接解释了硬限制和软限制和ulimit命令
ulimit