How to indicate that a memory block contains no GC pointers?

Alex Rønne Petersen xtzgzorex at gmail.com
Fri Mar 2 13:33:25 PST 2012


On 02-03-2012 21:54, Ali Çehreli wrote:
> On 03/02/2012 12:48 PM, Alex Rønne Petersen wrote:
>> Hi,
>>
>> Is there any way I can tell the GC that a block of memory does not
>> contain any possible pointers (in)to other GC-managed memory?
>>
>
> Everything about the GC should be in the core.memory module. I think
> what you need is removeRange(). Or you can specify the same if you
> allocate the memory explicitly:
>
> int * p = cast(int*)GC.calloc(100, GC.BlkAttr.NO_SCAN);
>
> Ali

Ah, exactly what I needed. Thanks!

-- 
- Alex


More information about the Digitalmars-d-learn mailing list