diff options
| author | Eric Holk <eholk@mozilla.com> | 2011-06-28 12:15:41 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2011-06-28 16:12:33 -0700 |
| commit | 657e5a2bd579f7f1698f8ba88cb1142ced7a477f (patch) | |
| tree | 46ed664d666330679e343cde537b9d9e3f33b3e3 /src/rt/rust_task_list.cpp | |
| parent | 02f6645fca946fd7cb9f55036c05a908f0567ceb (diff) | |
| download | rust-657e5a2bd579f7f1698f8ba88cb1142ced7a477f.tar.gz rust-657e5a2bd579f7f1698f8ba88cb1142ced7a477f.zip | |
Renamed what's left of rust_dom to rust_scheduler
Diffstat (limited to 'src/rt/rust_task_list.cpp')
| -rw-r--r-- | src/rt/rust_task_list.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rt/rust_task_list.cpp b/src/rt/rust_task_list.cpp index bb1224afa20..81441de35f5 100644 --- a/src/rt/rust_task_list.cpp +++ b/src/rt/rust_task_list.cpp @@ -1,16 +1,16 @@ #include "rust_internal.h" -rust_task_list::rust_task_list (rust_dom *dom, const char* name) : - dom(dom), name(name) { +rust_task_list::rust_task_list (rust_scheduler *sched, const char* name) : + sched(sched), name(name) { // Nop; } void rust_task_list::delete_all() { - DLOG(dom, task, "deleting all %s tasks", name); + DLOG(sched, task, "deleting all %s tasks", name); while (is_empty() == false) { rust_task *task = pop_value(); - DLOG(dom, task, "deleting task " PTR, task); + DLOG(sched, task, "deleting task " PTR, task); delete task; } } |
