j***y 发帖数: 2074 | 1 在用malloc分配内存之前,有没有什么办法能够查看系统中还有多少剩余的内存可用?
因为想check一下有没有内存泄露。
还有,什么情况下一个process死掉后不会产生core?
谢谢。 | q***e 发帖数: 21 | 2 vmstat, ps, and svmon, check unix manual for how to use them
if a process exits normally, no core will be created. If it exits because of
memory dump, a core file will be created
【在 j***y 的大作中提到】 : 在用malloc分配内存之前,有没有什么办法能够查看系统中还有多少剩余的内存可用? : 因为想check一下有没有内存泄露。 : 还有,什么情况下一个process死掉后不会产生core? : 谢谢。
|
|