rt: Remove rust_task::notify_tasks_wating_to_join

This commit is contained in:
Brian Anderson
2011-11-16 16:58:52 -08:00
parent 342dc21d2c
commit bae817efe6
3 changed files with 0 additions and 22 deletions

View File

@@ -99,9 +99,6 @@ rust_task : public kernel_owned<rust_task>, rust_cond
// that location before waking us up.
uintptr_t* rendezvous_ptr;
// List of tasks waiting for this task to finish.
array_list<rust_task *> tasks_waiting_to_join;
// This flag indicates that a worker is either currently running the task
// or is about to run this task.
int running_on;
@@ -184,9 +181,6 @@ rust_task : public kernel_owned<rust_task>, rust_cond
// Disconnect from our supervisor.
void unsupervise();
// Notify tasks waiting for us that we are about to die.
void notify_tasks_waiting_to_join();
frame_glue_fns *get_frame_glue_fns(uintptr_t fp);
rust_crate_cache * get_crate_cache();