我正在实现一个需要在4MB的硬内存限制下运行的算法.
有没有办法以一种方式运行一个进程,如果它超过其内存限制就会被杀死?或者只是简单地分析它的分配,以便能够看到已经分配了多少内存?
最佳答案 我认为ulimit是你正在寻找的:
https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man3/ulimit.3.html
Ulimit不会一直工作,这里提到了限制流程系统资源的替代方法:
How to limit memory of a OS X program? ulimit -v neither -m are working
这里也提出了同样的问题,所以这个问题可能会给这个问题带来一些启示,特别是关于虚拟内存:
https://apple.stackexchange.com/questions/43371/way-to-limit-how-much-ram-an-arbitrary-process-can-take-up
您可能会通过以下提示获得一个硬限制,同时使用ulimit:
http://hints.macworld.com/article.php?story=201106020948369