Go's march to low-latency GC

Martin Nowak via Digitalmars-d digitalmars-d at puremagic.com
Fri Jul 8 13:35:05 PDT 2016


On 07/08/2016 07:45 AM, ikod wrote:
> Correct me if I'm wrong, but in D fibers allocate stack statically, so
> we have to preallocate large stacks.
> 
> If yes - can we allocate stack frames on demand from some non-GC area?

Fiber stacks are just mapped virtual memory pages that the kernel only
backs with physical memory when they're actually used. So they already
are allocated on demand.


More information about the Digitalmars-d mailing list