namespace Core::Platform::TLS

namespace TLS {

// global functions

Threads::TLSRef allocate();
void* getValue(Threads::TLSRef slot);
bool setValue(Threads::TLSRef slot, void* value);
bool release(Threads::TLSRef slot);

} // namespace TLS