about summary refs log tree commit diff
path: root/src/rt/rust_task_list.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_task_list.cpp')
-rw-r--r--src/rt/rust_task_list.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/rt/rust_task_list.cpp b/src/rt/rust_task_list.cpp
deleted file mode 100644
index 998dcb80759..00000000000
--- a/src/rt/rust_task_list.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "rust_internal.h"
-
-rust_task_list::rust_task_list (rust_task_thread *thread) :
-    thread(thread) {
-}
-
-void
-rust_task_list::delete_all() {
-    DLOG(thread, task, "deleting all tasks");
-    while (is_empty() == false) {
-        rust_task *task = pop_value();
-        DLOG(thread, task, "deleting task " PTR, task);
-        delete task;
-    }
-}