| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-03-05 | Remove run-pass/lint-cstack.rs. No longer testing anything. | Brian Anderson | -26/+0 | |
| 2015-02-18 | Fallout: tests. As tests frequently elide things, lots of changes | Niko Matsakis | -1/+1 | |
| here. Some of this may have been poorly rebased, though I tried to be careful and preserve the spirit of the test. | ||||
| 2014-04-04 | Fix fallout from std::libc separation | Corey Richardson | -1/+1 | |
| 2013-11-11 | Remove #[fixed_stack_segment] and #[rust_stack] | Alex Crichton | -1/+0 | |
| These two attributes are no longer useful now that Rust has decided to leave segmented stacks behind. It is assumed that the rust task's stack is always large enough to make an FFI call (due to the stack being very large). There's always the case of stack overflow, however, to consider. This does not change the behavior of stack overflow in Rust. This is still normally triggered by the __morestack function and aborts the whole process. C stack overflow will continue to corrupt the stack, however (as it did before this commit as well). The future improvement of a guard page at the end of every rust stack is still unimplemented and is intended to be the mechanism through which we attempt to detect C stack overflow. Closes #8822 Closes #10155 | ||||
| 2013-09-25 | Fix run-pass tests to have 'pub fn main' | Alex Crichton | -1/+1 | |
| This is required by the check-fast target because each test is slurped up into a submodule. | ||||
| 2013-09-12 | rustc: Fix cstack lint for default methods. Closes #8753 | Brian Anderson | -0/+27 | |
