diff options
| author | Ben Blum <bblum@andrew.cmu.edu> | 2013-07-02 21:15:34 -0400 |
|---|---|---|
| committer | Ben Blum <bblum@andrew.cmu.edu> | 2013-07-20 05:08:56 -0400 |
| commit | 52ca256d7be99dafa81c531bf1fc6ec2e2a508b9 (patch) | |
| tree | 09e7ed0ea7c3b9f6b1d4262b4a0bef26046d41f6 /src/libstd/rt/mod.rs | |
| parent | 2a99163f5d54ff26921cda0b12a99e5bd768b873 (diff) | |
| download | rust-52ca256d7be99dafa81c531bf1fc6ec2e2a508b9.tar.gz rust-52ca256d7be99dafa81c531bf1fc6ec2e2a508b9.zip | |
Add KillHandle and implement exit code propagation to replace join_latch
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 51f4737ef85..1c3411b6247 100644 --- a/src/libstd/rt/mod.rs +++ b/src/libstd/rt/mod.rs @@ -83,6 +83,9 @@ pub mod global_heap; /// Implementations of language-critical runtime features like @. pub mod task; +/// Facilities related to task failure, killing, and death. +mod kill; + /// The coroutine task scheduler, built on the `io` event loop. mod sched; |
