eb86913dcf
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. |
||
---|---|---|
.. | ||
args.rs | ||
at_exit_imp.rs | ||
crate_map.rs | ||
env.rs | ||
global_heap.rs | ||
local_heap.rs | ||
local_ptr.rs | ||
local.rs | ||
logging.rs | ||
macros.rs | ||
mod.rs | ||
rtio.rs | ||
stack.rs | ||
task.rs | ||
thread_local_storage.rs | ||
thread.rs | ||
unwind.rs | ||
util.rs |