I know that both raise(SIGABRT)
and abort()
methods will send a SIGABRT signal to itself. But there are some difference between those 2 functions. (e.g - abort()
function unblocks the SIGABRT signal where as raise(SIGABRT)
does not.)
What are the other differences between raise(SIGABRT)
and abort()
methods
raise
andabort
syscall. – Lecialecithin