Is there any way to disable the generation of "crash dump" & "core dump" files when running 'erl' ?

PS: I know about the "+d" option of erl but I want to completely disable the generation of crash/core dumps.

link|improve this question

May I ask why? What's the big deal? – rfunduk Oct 6 '09 at 16:04
feedback

1 Answer

up vote 1 down vote accepted
+100

If you are into dirty patching, you can insert a return statement right at the top of the erl_crash_dump_v function in break.c, and recompile.

link|improve this answer
Thanks for the suggestion but I would rather have this work out of the box: I don't want to have to maintain another distro. – jldupont Sep 13 '09 at 11:18
I'm pretty sure you either do this, or write a nice wish letter to the erlang development mailing list :) Anyway, I would love to be proven wrong. – Zed Sep 15 '09 at 17:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.