about summary refs log tree commit diff
path: root/src/rt/rust_task_list.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-03-17 18:19:49 -0700
committerBrian Anderson <banderson@mozilla.com>2012-03-18 18:18:15 -0700
commit47c18957242e34ddb8b12f27c8efd396171fef6d (patch)
treed0225a9073c770e61dbe8e71050cf9223306e9a5 /src/rt/rust_task_list.cpp
parent05466c61380366cfd1969bb9f4eb26cff2acaedd (diff)
downloadrust-47c18957242e34ddb8b12f27c8efd396171fef6d.tar.gz
rust-47c18957242e34ddb8b12f27c8efd396171fef6d.zip
rt: Don't store the name of the task state in rust_task_list
Diffstat (limited to 'src/rt/rust_task_list.cpp')
-rw-r--r--src/rt/rust_task_list.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rt/rust_task_list.cpp b/src/rt/rust_task_list.cpp
index e7cc479f98f..998dcb80759 100644
--- a/src/rt/rust_task_list.cpp
+++ b/src/rt/rust_task_list.cpp
@@ -1,12 +1,12 @@
 #include "rust_internal.h"
 
-rust_task_list::rust_task_list (rust_task_thread *thread, const char* name) :
-    thread(thread), name(name) {
+rust_task_list::rust_task_list (rust_task_thread *thread) :
+    thread(thread) {
 }
 
 void
 rust_task_list::delete_all() {
-    DLOG(thread, task, "deleting all %s tasks", name);
+    DLOG(thread, task, "deleting all tasks");
     while (is_empty() == false) {
         rust_task *task = pop_value();
         DLOG(thread, task, "deleting task " PTR, task);