Hacker News new | ask | show | jobs
by azornathogron 550 days ago
Using concurrent GC has various advantages but in no way makes it deterministic.
1 comments

True, not by itself.

But concurrent GC is the basis for making deterministic GC, since it gives you the option of scheduling GC work whenever you like rather than pausing the world.

Some concurrent GCs are also deterministic while others aren’t. I’ve written both kinds.

you have some very non-standard definition of determinism.
How so?