プログラムの下で実行しているときにコアダンプを取得しています:
$ cat test2.c
#include <stdio.h>
#include <stdlib.h>
void main()
{
abort();
}
$
$ cc -o test2 test2.c
"test2.c", line 5: warning #2951-D: return type of function "main" must be
"int"
void main()
^
$ ./test2
Abort(coredump)
$
SIGABRT信号を受信しました。このSIGABRT信号を処理する方法を教えてください。