]> git.lizzy.rs Git - rust.git/commitdiff
auto merge of #7111 : brson/rust/stack, r=brson
authorbors <bors@rust-lang.org>
Thu, 27 Jun 2013 03:40:31 +0000 (20:40 -0700)
committerbors <bors@rust-lang.org>
Thu, 27 Jun 2013 03:40:31 +0000 (20:40 -0700)
... through yields

This avoids the following pathological scenario that makes threadring OOM:

1) task calls C using fast_ffi, borrowing a big stack from the scheduler.
2) task returns from C and places the big stack on the task-local stack segment list
3) task calls further Rust functions that require growing the stack, and for this reuses the big stack
4) task yields, failing to return the big stack to the scheduler.
5) repeat 500+ times and OOM

(reopening after incoming fallout. *do not r+*. broken)


Trivial merge