CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2011/04/15 15:39:45
Modified files:
lib/libc/arch/hppa/gen: setjmp.S
Log message:
Remove wrong check.
HPPA longjmp tests that the env parameter < the current stack pointer.
The test relies on the stack being at the end of the memory space.
This test is wrong for a couple of reasons:
- the main stack is at 0x78000000-0x80000000, but allocations between
0x80000000-0xc0000000 are available to the program,
- pthread stacks may be at any place in the address space, allowing a
heap-allocated env parameter to fail the check.
ok deraadt@, kettenis@, guenther@ at least