]> git.lizzy.rs Git - rust.git/commit
auto merge of #12505 : alexcrichton/rust/fix-stack-overflow, r=brson
authorbors <bors@rust-lang.org>
Wed, 26 Feb 2014 03:21:32 +0000 (19:21 -0800)
committerbors <bors@rust-lang.org>
Wed, 26 Feb 2014 03:21:32 +0000 (19:21 -0800)
commiteb86913dcf72dcb628d9b5250aabd2da0ca7df49
treefc178df8b5aa1ca3f9ed5fb24e7a69baafcc71fd
parent2e1cfae94382734d9c75f49bbfe8a6896e98f8c3
parent4f4d43bf6cf6f36d5d0b3a1f890b1d88aec85538
auto merge of #12505 : alexcrichton/rust/fix-stack-overflow, r=brson

The printing of the error message on stack overflow had two sometimes false
assumptions previously. The first is that a local task was always available (it
called Local::take) and the second is that it used `println!` instead of
manually writing.

The first assumption isn't necessarily true because while stack overflow will
likely only be detected in situations that a local task is available, it's not
guaranteed to always be in TLS. For example, during a `println!` call a task
may be blocking, causing it to be unavailable. By using Local::try_take(), we
can be resilient against these occurrences.

The second assumption could lead to odd behavior because the stdout logger can
be overwritten to run arbitrary code. Currently this should be possible, but the
utility is much diminished because a stack overflow translates to an abort()
instead of a failure.