On 8/16/05, r_zaca <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I have a program that just stops execution and I can't see what is really
> going on. Does anyone know how this kind of problem shoud be solved. I've
> already read something about core dump memory, but I don't know how to make
> i
Hello,
first enable coredumps
# ulimit -c unlimited
# ./yourfaultyapp
open another shell and kill the process using kill -SIGSEGV then it
should say core dumped (also compile your application with -g .. there
are a few other debugging options but that one might already help you)
afterwards run y