From: <chr...@ma...> - 2020-05-26 19:46:17
|
On 2020-05-26 10:09, Ken Moffat via Check-devel wrote: > So, raise on its own apparently doesn't generate the exception. Well, raise returns zero on success, so try: printf("raise: %d\n", raise(SIGFPE)) Raise can be implemented by kill, so try: printf("kill: %d\n", kill(getpid(), SIGFPE)) Try a -O0 build of glibc and then linux. I'm suggesting this because you also noticed problems in Bash. Chris |