diff options
| author | Michael Bebenita <[email protected]> | 2010-07-28 16:46:13 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-28 20:30:29 -0700 |
| commit | 4246d567b7a999155524669e3b0419e8f71080b1 (patch) | |
| tree | 38ab4d3aa04b25e37db9e663890235edf2f3a8a6 /src/rt/rust_task.h | |
| parent | Move notification-messages out into their own file and unify into notify_mess... (diff) | |
| download | rust-4246d567b7a999155524669e3b0419e8f71080b1.tar.xz rust-4246d567b7a999155524669e3b0419e8f71080b1.zip | |
Move ports out into their own file, add data_message and make communication system use it (and proxies) instead of existing token scheme.
Diffstat (limited to 'src/rt/rust_task.h')
| -rw-r--r-- | src/rt/rust_task.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/rt/rust_task.h b/src/rt/rust_task.h index 34553b6c..b657592a 100644 --- a/src/rt/rust_task.h +++ b/src/rt/rust_task.h @@ -28,9 +28,6 @@ rust_task : public maybe_proxy<rust_task>, size_t gc_alloc_thresh; size_t gc_alloc_accum; - // Wait queue for tasks waiting for this task. - rust_wait_queue waiting_tasks; - // Rendezvous pointer for receiving data when blocked on a port. If we're // trying to read data and no data is available on any incoming channel, // we block on the port, and yield control to the scheduler. Since, we @@ -101,7 +98,6 @@ rust_task : public maybe_proxy<rust_task>, void unsupervise(); // Notify tasks waiting for us that we are about to die. - void notify_waiting_tasks(); void notify_tasks_waiting_to_join(); uintptr_t get_fp(); |