thread local variables

Started by tormoz, May 16, 2006, 08:51:24 PM

Previous topic - Next topic

tormoz

It will be good to have thread local variables like __declspec(thread) in VS C compiler. I've not found it in Pelles C.

Pelle

Not sure it's a good idea: __declspec(thread) can fail in some cases, but TlsAlloc() can not (well, usually not). Using TlsAlloc() should be safer.
/Pelle