diff options
| author | bors <bors@rust-lang.org> | 2013-12-24 12:46:32 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-12-24 12:46:32 -0800 |
| commit | 32e730f122f06202eb48aefcc2cef6ee3e279a2f (patch) | |
| tree | 1316fc154599be29d575beb850b1c4ca4a86c24c /src/libstd/rt/mod.rs | |
| parent | b8c87fd9fe649d3211bb53754fb692a825ecfdff (diff) | |
| parent | e3b37154b0f321ad74f293d98d9be2ae512c2ec7 (diff) | |
| download | rust-32e730f122f06202eb48aefcc2cef6ee3e279a2f.tar.gz rust-32e730f122f06202eb48aefcc2cef6ee3e279a2f.zip | |
auto merge of #11121 : vadimcn/rust/no-c++2, r=alexcrichton
This PR removes Rust's dependency on C++ for exception handling. Instead, it will use the unwind library API directly. closes #10469
Diffstat (limited to 'src/libstd/rt/mod.rs')
| -rw-r--r-- | src/libstd/rt/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/rt/mod.rs b/src/libstd/rt/mod.rs index 5d2179e8b96..df1ebeb6407 100644 --- a/src/libstd/rt/mod.rs +++ b/src/libstd/rt/mod.rs @@ -173,6 +173,9 @@ mod local_ptr; /// Bindings to pthread/windows thread-local storage. mod thread_local_storage; +/// Stack unwinding +pub mod unwind; + /// Just stuff mod util; |
