hello, > Is it possible to stop the GC for garbage collecting for a code > block? > This would be helpful for time critical parts. You would have to modify the GC to expose an API that prevents it running, then you decide what the semantics should be, but be aware that other threads will be running (like the finalizer). Miguel