From: Tom H. <to...@co...> - 2022-09-01 06:05:59
|
On 01/09/2022 01:03, Bresalier, Rob (Nokia - US/Murray Hill) wrote: > Don't understand why strace log has exit(0) without the underscore, I know for a fact that it was with the underscore. Because exit() and _exit() are C library functions but both call the SYS_exit system call and that is what strace shows. The difference is that _exit doesn't run atexit() handlers or do any other cleanup before calling SYS_exit. Tom -- Tom Hughes (to...@co...) http://compton.nu/ |