diff options
| author | Michael Bebenita <mbebenita@mozilla.com> | 2010-07-28 15:17:30 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2010-07-28 20:30:29 -0700 |
| commit | defd8a66eade4cb11960cf6de2b45c2f42ec3388 (patch) | |
| tree | d9c2c87a2df903ba4ae3b93536805a6b2ad17c39 /src/rt/rust_task.h | |
| parent | 30b3f8a11713e32fdb0d0059141289152a46d501 (diff) | |
| download | rust-defd8a66eade4cb11960cf6de2b45c2f42ec3388.tar.gz rust-defd8a66eade4cb11960cf6de2b45c2f42ec3388.zip | |
Rename rust_proxy_delegate to maybe_proxy, flesh out logic in it. Add strong-ref distinction on rust_proxy.
Diffstat (limited to 'src/rt/rust_task.h')
| -rw-r--r-- | src/rt/rust_task.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rt/rust_task.h b/src/rt/rust_task.h index a5cca2cbfc0..0c723a9dd5d 100644 --- a/src/rt/rust_task.h +++ b/src/rt/rust_task.h @@ -5,9 +5,8 @@ #ifndef RUST_TASK_H #define RUST_TASK_H struct -rust_task : public rust_proxy_delegate<rust_task>, - public dom_owned<rust_task>, - public rust_cond +rust_task : public maybe_proxy<rust_task>, + public dom_owned<rust_task> { // Fields known to the compiler. stk_seg *stk; |
