about summary refs log tree commit diff
path: root/src/test/run-fail/morestack3.rs
AgeCommit message (Collapse)AuthorLines
2011-12-18libcore: Remove task::set_min_stackBrian Anderson-5/+0
This existed to make up for the lack of stack growth, and wasn't generally safe.
2011-12-18test: Enable all morestack testsBrian Anderson-2/+0
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-1/+1
2011-12-11rt: Make unwinding through __morestack work on macBrian Anderson-2/+2
Had to bump the min stack size in some of the tests from 256 bytes to 1024 bytes. Not sure why yet.
2011-12-06rt: Various tweaks to make __morestack unwinding work on linuxBrian Anderson-2/+2
When unwinding through __morestack the stack limit in the TLS is invalidated and must be reset. Instead of actually landing at __morestack we're just going to make all our Rust landing pads call upcall_reset_stack_limit, which will find the stack segment that corresponds to the current stack pointer and put the limit in the TLS. Also massively expand the stack segment red zone to make more room for the dynamic linker. Will fix in the future.
2011-12-05test: More tests for unwinding + morestackBrian Anderson-0/+34