about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-03-21 14:13:31 -0700
committerBrian Anderson <banderson@mozilla.com>2012-03-21 19:10:32 -0700
commit08f783ff10cd561fbe31d5744fd42713d4b3764f (patch)
treea9df4d5bab83891c5e3fb8f98902158948b32da1 /src/rt/rust_task.cpp
parent4a0c6c7f41149fceb58c7646be2e54975023d57e (diff)
downloadrust-08f783ff10cd561fbe31d5744fd42713d4b3764f.tar.gz
rust-08f783ff10cd561fbe31d5744fd42713d4b3764f.zip
rt: Add a task field to stk_seg and populate it
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index 98c3c9e456f..317638b93c9 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -508,6 +508,7 @@ rust_task::new_stack(size_t requested_sz) {
     size_t sz = rust_stk_sz + RED_ZONE_SIZE;
     stk_seg *new_stk = create_stack(&local_region, sz);
     LOGPTR(thread, "new stk", (uintptr_t)new_stk);
+    new_stk->task = this;
     new_stk->next = NULL;
     new_stk->prev = stk;
     if (stk) {