Tagged Questions
The loaderlock tag has no wiki summary.
8
votes
2answers
3k views
Loader lock error
I am building on C++ dll, by writing code in C#.
I get an error, saying
LoaderLock was detected Message:
Attempting managed execution inside OS
Loader lock. Do not attempt to run
managed ...
2
votes
2answers
183 views
Loader lock error with managed c++ dll, statically linked to a native c++ lib
I have a managed c++ dll with few managed classes that in turn call native c++ code in a library that I have statically linked to the dll. However, if I try to run RegAsm.exe on the dll, the tool ...
1
vote
1answer
84 views
A GetModuleHandle implementaion
A GetModuleHandle("some.dll") implementation?
I need to do it this way because I am in DllMain() therefore, loader lock is held. I've read that GetModuleHandle() also uses the loader lock [page #6] ...
1
vote
1answer
1k views
LoaderLock was detected, and turning off the warning does not help
I am trying to write an application that takes in sound from the default audio recording device on a computer. When running any code that accesses DirectX from my managed code i get this error:
...
1
vote
2answers
581 views
LoaderLock error on program termination
I have recently integrated the .NET NLog logging component into one of our applications which developed purely in unmanaged code (C++ and VB6 components compiled in Visual Studio 6). We have a bunch ...