about summary refs log tree commit diff
path: root/src/libstd/task
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-06-11 09:52:40 -0700
committerbors <bors@rust-lang.org>2013-06-11 09:52:40 -0700
commitd1d855993d0386fc13ad1b74df565b5ba6f6e4ea (patch)
treef4c3d0397b96ac2a4d324e29ea1118f9223a7e3c /src/libstd/task
parentbf41586a1835790b7294c658f4dae484f738ce03 (diff)
parent8081aea3b86d9e25746ff03acabe53c3644b600c (diff)
downloadrust-d1d855993d0386fc13ad1b74df565b5ba6f6e4ea.tar.gz
rust-d1d855993d0386fc13ad1b74df565b5ba6f6e4ea.zip
auto merge of #7047 : bblum/rust/bug_triage, r=graydon
r? anybody
Diffstat (limited to 'src/libstd/task')
-rw-r--r--src/libstd/task/spawn.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/task/spawn.rs b/src/libstd/task/spawn.rs
index 87e9296657f..bc409e06633 100644
--- a/src/libstd/task/spawn.rs
+++ b/src/libstd/task/spawn.rs
@@ -323,6 +323,7 @@ impl Drop for TCB {
     // Runs on task exit.
     fn finalize(&self) {
         unsafe {
+            // FIXME(#4330) Need self by value to get mutability.
             let this: &mut TCB = transmute(self);
 
             // If we are failing, the whole taskgroup needs to die.