about summary refs log tree commit diff
path: root/src/rt/rust_kernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_kernel.cpp')
-rw-r--r--src/rt/rust_kernel.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rt/rust_kernel.cpp b/src/rt/rust_kernel.cpp
index 8ce79ec9106..a629f2ff4af 100644
--- a/src/rt/rust_kernel.cpp
+++ b/src/rt/rust_kernel.cpp
@@ -124,9 +124,6 @@ rust_kernel::get_scheduler_by_id_nolock(rust_sched_id id) {
 void
 rust_kernel::release_scheduler_id(rust_sched_id id) {
     scoped_lock with(sched_lock);
-    // This list will most likely only ever have a single element in it, but
-    // it's an actual list because we could potentially get here multiple
-    // times before the main thread ever calls wait_for_schedulers()
     join_list.push_back(id);
     sched_lock.signal();
 }