So there's a list of c++11 features supported by visual studio.

thread_local support is marked as partial. I was unable to find an explanation of what exactly partial support means here. Did they just alias __declspec(thread)?

I could just use boost::thread_specific_ptr, but there seem to be some reports that boost::thread_specific_ptr is slow. That may or may not be true.

Specifically I want fast TLS on x86/x64 on the most recent linux+gcc and windows+msvc. Fast meaning no system calls where possible (I think this is possible for the platforms above.)

link|improve this question

4  
The Visual C++ 11 Developer Preview does not support the thread_local keyword. – James McNellis Jan 7 at 20:18
My understanding is that 'partial' here means the semantics are supported but not through the standard syntax/keyword. – ildjarn Jan 7 at 20:22
My understanding is that you don't really need thread local storage in a well designed programs. – ybungalobill Jan 7 at 20:31
@ybungalobill Either GNU, POSIX, Microsoft, SUN, IBM, and the C++ std committee all provided facilities for something that is not needed in well designed software or your understanding is flawed. But I would like to hear your argument. – Eloff Jan 7 at 21:41
@ybungalobill: Naw, TLS can be useful. You are correct in the sense that TLS is essentially another global, but globals have their use. – GManNickG Jan 7 at 21:54
show 20 more comments
feedback

1 Answer

up vote 1 down vote accepted

So I did some digging into thread_local semantics. gcc's __thread and msvc's __declspec(thread) have the same semantics as each other and thread_local (dynamic initialization aside, which may or may not have made it into the standard yet.) So this is really a non-issue for my use case. I'll just make a define that aliases one or the other platform specific attribute.

link|improve this answer
Sadly, the problem with these mechanisms is that they don't support non-POD types. When a thread is terminated, I want its TLS objects to have their destructors called. Neither __thread or __declspec(thread) can handle that. BUt if you don't need that, this approach should work fine – jalf Jan 8 at 15:49
You don't get non-trivial construction/destruction for free anyway, so if you need that there are more performant (no it's not a word, but it should be) mechanisms. I went with a __thread context* and then allocated the context on the stack in the thread start method and set the tls context* to point to it. Then I get proper construction/destruction and access to it should be almost as fast as is possible. – Eloff Jan 10 at 20:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.