On Fri, 2007-12-28 at 15:52 +0100, Davide wrote:
Well the purpose of that mail was to ask if there is a command i should use, e.g. ulimit, to limit the memory of my processes. Davide
If your process runs out of memory, even due to a per-process basis, I presume it will simply segfault and die, and you will have the same problem you are having now. The only way I know to avoid requesting more memory than is available (which is what causes the process to die) is to rework your code to be more memory-efficient.
-B.