From f94339cc1c98a1ae3ee3beb94c848009167a58d9 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 3 Feb 2012 12:47:01 -0800 Subject: rt: Rename rust_scheduler to rust_task_thread --- 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 96d3d7bd34a..e7cc479f98f 100644 --- a/src/rt/rust_task_list.cpp +++ b/src/rt/rust_task_list.cpp @@ -1,15 +1,15 @@ #include "rust_internal.h" -rust_task_list::rust_task_list (rust_scheduler *sched, const char* name) : - sched(sched), name(name) { +rust_task_list::rust_task_list (rust_task_thread *thread, const char* name) : + thread(thread), name(name) { } void rust_task_list::delete_all() { - DLOG(sched, task, "deleting all %s tasks", name); + DLOG(thread, task, "deleting all %s tasks", name); while (is_empty() == false) { rust_task *task = pop_value(); - DLOG(sched, task, "deleting task " PTR, task); + DLOG(thread, task, "deleting task " PTR, task); delete task; } } -- cgit 1.4.1-3-g733a5