Hi,

What are the consequences of using non garbage collected threads in D?

I want to write a reliable communication protocol, but I don't want suspend this code by the GC.

Is there any method to bind allocated memory to thread itself, so it will be freed after thread terminates, but not in the middle of execution?

This is important because in the other case, GC could free memory referenced by non-GC thread.

Piotr

Reply via email to