From 6be8ba080c3f227ef640deec6403b4c1bab7f15e Mon Sep 17 00:00:00 2001 From: Zheyuan Chen Date: Sun, 14 May 2023 21:44:35 -0700 Subject: [PATCH] mmtk-core/src/vm/ChangeLog: * collection.rs: Remove deprecated constant 'COORDINATOR_ONLY_STW'. Signed-off-by: Zheyuan Chen --- src/vm/collection.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/vm/collection.rs b/src/vm/collection.rs index 8e117d9e6f..c552842945 100644 --- a/src/vm/collection.rs +++ b/src/vm/collection.rs @@ -12,10 +12,6 @@ pub enum GCThreadContext { /// VM-specific methods for garbage collection. pub trait Collection { - /// This const existed for historical reasons. It has no effect now. - #[deprecated] - const COORDINATOR_ONLY_STW: bool = true; - /// Stop all the mutator threads. MMTk calls this method when it requires all the mutator to yield for a GC. /// This method is called by a single thread in MMTk (the GC controller). /// This method should not return until all the threads are yielded.