CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2018/05/23 13:22:54
Modified files: regress/sys/kern/noexec: noexec.c Log message: Since MAP_STACK was introduced, noexec -S -m failed from time to time. The stack pointer was outside of the stack. The stack actually reaches the re-mmapped region that lacked the MAP_STACK bit. Adding a MAP_STACK flag to the mmap(2) call fixes the test. OK visa@