blob: 2b21d1e0e15be88b893509e9f37c411a49b2b6b0 [file] [log] [blame]
/**
*
* Copyright: Copyright Digital Mars 2011 - 2012.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Martin Nowak
* Source: $(DRUNTIMESRC rt/tlsgc.d)
*/
/* Copyright Digital Mars 2011.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
module rt.tlsgc;
import core.exception : onOutOfMemoryError;
import core.stdc.stdlib : free, malloc;
static import rt.sections;
/**
* Per thread record to store thread associated data for garbage collection.
*/
struct Data
{
typeof(rt.sections.initTLSRanges()) tlsRanges;
}
/**
* Initialization hook, called FROM each thread. No assumptions about
* module initialization state should be made.
*/
void* init() nothrow @nogc
{
auto data = cast(Data*).malloc(Data.sizeof);
if ( data is null ) onOutOfMemoryError();
*data = Data.init;
// do module specific initialization
data.tlsRanges = rt.sections.initTLSRanges();
return data;
}
/**
* Finalization hook, called FOR each thread. No assumptions about
* module initialization state should be made.
*/
void destroy(void* data) nothrow @nogc
{
// do module specific finalization
rt.sections.finiTLSRanges((cast(Data*)data).tlsRanges);
.free(data);
}
alias void delegate(void* pstart, void* pend) nothrow ScanDg;
/**
* GC scan hook, called FOR each thread. Can be used to scan
* additional thread local memory.
*/
void scan(void* data, scope ScanDg dg) nothrow
{
// do module specific marking
rt.sections.scanTLSRanges((cast(Data*)data).tlsRanges, dg);
}