I know that both the raise(SIGABRT) and abort() methods will send a SIGABRT signal for themselves. But there is a difference between these two functions. (for example, - the abort() function blocks the signal SIGABRT, where as raise(SIGABRT) not.)
What are the other differences between raise(SIGABRT) and abort() methods
source share