发生错误时,哪个二进制或代码段在控制台上打印分段错误?
最佳答案
当启用作业控制时,这就是调用shell的作业。用bash演示:
$ set +m # disable job control
$ bash -c 'kill -SEGV $$'
$ set -m # enable job control
$ bash -c 'kill -SEGV $$'
Segmentation fault (core dumped)