From 657e5a2bd579f7f1698f8ba88cb1142ced7a477f Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Tue, 28 Jun 2011 12:15:41 -0700 Subject: Renamed what's left of rust_dom to rust_scheduler --- src/rt/rust_task_list.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/rt/rust_task_list.cpp') 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; } } -- cgit 1.4.1-3-g733a5