Saaa wrote: > Will a garbage collection sweep halt all threads momentarily? Yes. > If so, isn't there a way around this? An incremental GC doesn't halt threads (some actually do as a last resort), but it requires compiler support to work. In essence, every time a pointer is changed with an incremental GC, the GC must be notified. Sean