about summary refs log tree commit diff
path: root/src/rt/rust_task_list.cpp
diff options
context:
space:
mode:
authorEric Holk <eholk@mozilla.com>2011-06-28 12:15:41 -0700
committerGraydon Hoare <graydon@mozilla.com>2011-06-28 16:12:33 -0700
commit657e5a2bd579f7f1698f8ba88cb1142ced7a477f (patch)
tree46ed664d666330679e343cde537b9d9e3f33b3e3 /src/rt/rust_task_list.cpp
parent02f6645fca946fd7cb9f55036c05a908f0567ceb (diff)
downloadrust-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.cpp8
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;
     }
 }