It seems that when a thread is created from within DllMain upon DLL_PROCESS_ATTACH it won't begin until all dll's have been loaded. Since I need to make sure the thread runs before I continue, I get a deadlock. Is there any way to force the thread to start?
|
|
|
|
|
|
|
You shouldn't be doing any API calls, especially for things like creating threads or windows, from DLLMain. Raymond Chen has written about this many times; here's one that's particularly relevant. |
||
|
|
|
|
You're asking for trouble if you do this. You shouldn't make any calls (directly or indirectly) to functions that are outside of your dll's (including C library calls, etc.). If you can't change the DLL you have (e.g. you don't have source code), you might be able to get away with this if your DLL is dynamically loaded after the rest of your dependent DLL's are initialized. I wouldn't recommend this approach if you can avoid it because figuring out the dependency chain is not always trivial (e.g. if your dll causes a dependent dll to load a third one dynamically through COM or some other means). |
||
|
|
|
|
No. You shouldn't call CreateThread (or any varation) from DllMain. Attempting to synchronize will result in a deadlock. What exactly are you trying to do? |
||
|
|
