vote up 3 vote down star
1

I'm working on a project where we mix .NET code and native C++ code via a C++/CLI layer. In this solution I want to use Thread Local Storage via the __declspec(thread) declaration:

__declspec(thread) int lastId = 0;

However, at the first access of the variable, I get a NullReferenceException. To be more precise, the declaration is done within a ref class (a .NET class implemented in C++/CLI).

I have already read something about __declspec(thread) does not work with delay loaded DLLs. Am I using delay loaded DLLs automatically if I use .NET?

flag

2 Answers

vote up 3 vote down check

It seems that __declspec(thread) isn't supported by CLR.

Take in mind that .net threads aren't necesarily native threads, but can be also fibers, so standard API's for threads don't work on them.

If you have a managed class, then you should use managed threading API's for thread local storage.

There are a lot of articles regarding this difference. This is just to get you started.

link|flag
vote up 3 vote down

Unfortunately not supported. Here's a blog entry with a workaround:

http://blogs.msdn.com/jeremykuhne/archive/2006/04/19/578670.aspx

link|flag

Your Answer

Get an OpenID
or

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