On 8/6/12, CrudOMatic <crudoma...@gmail.com> wrote: > another quick question - are these allocations automatically > entered into the GC heap? If so then I can just disable garbage > collection?
No, there is the standard C malloc/free in std.c.stdlib which you're using, and then there's the GC.malloc and GC.free in core.memory if you want to allocate from the GC heap.