<html><body><p>Breno,<br><br>Just to complement what you said, the si->si_code value you get on Power with the code you provided (SEGV_ACCERR 2) comes from .../arch/powerpc/mm/fault.c, line 375: <a href="https://goo.gl/6K40Bv">https://goo.gl/6K40Bv</a><br><br>Hence, changing that line to 'code = SEGV_MAPERR;' makes your code die with SIGSEGV Code ID 1, not 2:<br><br>:~/stack$ uname -a<br>Linux gromero12 4.4.0 #3 SMP Tue Jan 19 15:46:14 EST 2016 ppc64le ppc64le ppc64le GNU/Linux<br>:~/stack$ ./overflow <br>Got SIGSEGV(1) at address: 0x3fffcecefff0<br>Segmentation fault <br><br><br>Regards,<br>--<br>Gustavo Romero<BR>
</body></html>