View source code
Display the source code in core/memory.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Function core.memory.GC.allocatedInCurrentThread

Returns the number of bytes allocated for the current thread since program start. It is the same as GC.stats().allocatedInCurrentThread, but faster.

static extern(C) ulong allocatedInCurrentThread();

Example

Using allocatedInCurrentThread

ulong currentlyAllocated = GC.allocatedInCurrentThread();
struct DataStruct
{
    long l1;
    long l2;
    long l3;
    long l4;
}
DataStruct* unused = new DataStruct;
writeln(GC.allocatedInCurrentThread()); // currentlyAllocated + 32
writeln(GC.stats().allocatedInCurrentThread); // currentlyAllocated + 32
}

Authors

Sean Kelly, Alex Rønne Petersen

License

Boost License 1.0