...
The POSIX standard [IEEE Std 1003.1:2013] adds SIGBUS
to the list of computational exception signal handlers,
The behavior of a process is undefined after it ignores a
SIGFPE
,SIGILL
,SIGSEGV
, orSIGBUS
signal that was not generated bykill()
,sigqueue()
, orraise()
.
Do not return from SIGFPE
, SIGILL
, or
, or any other implementation-defined value corresponding to a computational exception such as SIGSEGV
SIGBUS
on POSIX systems, regardless of how the signal was generated.
...