diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2010-07-02 08:17:41 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2010-07-02 08:17:41 -0700 |
| commit | b2692ef2ecf4b8d9783dfa0af12b8816184f0da5 (patch) | |
| tree | bc75e42624f05f6aea52374103f67f17b052948c /src/rt/rust_task.cpp | |
| parent | c7ef0ded810a57217bfd3651b92243612ac137bc (diff) | |
| download | rust-b2692ef2ecf4b8d9783dfa0af12b8816184f0da5.tar.gz rust-b2692ef2ecf4b8d9783dfa0af12b8816184f0da5.zip | |
Actually link GC allocations onto the gc_alloc_chain, der.
Diffstat (limited to 'src/rt/rust_task.cpp')
| -rw-r--r-- | src/rt/rust_task.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index bf92ba90ec4..5e230a589eb 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -413,6 +413,7 @@ rust_task::link_gc(gc_alloc *gcm) { I(dom, gcm->next == NULL); gcm->prev = NULL; gcm->next = gc_alloc_chain; + gc_alloc_chain = gcm; } void |
