[K/N] Make STMS use separate threads for GC and finalizers.

Moves GC into a separate thread, and finalizers processing into yet
another thread. This makes STMS more similar to CMS.
This commit is contained in:
Alexander Shabalin
2023-02-28 14:35:26 +01:00
committed by Space Team
parent 6996e03bc9
commit db2475f41e
17 changed files with 440 additions and 593 deletions
@@ -48,7 +48,7 @@ public:
class Iterator {
public:
using difference_type = void;
using difference_type = std::ptrdiff_t;
using value_type = Value;
using pointer = Value*;
using reference = Value&;