diff options
| author | Michael Bebenita <[email protected]> | 2010-07-28 15:17:30 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-28 20:30:29 -0700 |
| commit | defd8a66eade4cb11960cf6de2b45c2f42ec3388 (patch) | |
| tree | d9c2c87a2df903ba4ae3b93536805a6b2ad17c39 /src/rt/rust_task.h | |
| parent | Add rust_dom::log_state, for logging the running/blocked/dead vectors per sch... (diff) | |
| download | rust-defd8a66eade4cb11960cf6de2b45c2f42ec3388.tar.xz 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 a5cca2cb..0c723a9d 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; |