473,769 Members | 2,003 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DllMain, DLL_PROCESS_ATT ACH, and DLL_PROCESS_DET ACH in MFC Extension DLLs

With MFC Extension DLL that exports classes through __declspec(dlle xport)

DLL_PROCESS_ATT ACH/DLL_PROCESS_DET ACH
1. Does each a process loads dll only once and unloads dll only once during
its life-time?

DLL_THREAD_ATTA CH/DLL_THREAD_DETA CH
2. Does each a thread loads dll only once and unloads dll only once during
its life-time? Does DLL_THREAD_DETA CH occurs only when thread terminates?
Thank you,
-Boris
Nov 17 '05 #1
1 8657
Boris wrote:
With MFC Extension DLL that exports classes through
__declspec(dlle xport)

DLL_PROCESS_ATT ACH/DLL_PROCESS_DET ACH
1. Does each a process loads dll only once and unloads dll only once
during its life-time?
If the DLL is statically loaded (i.e. NOT by LoadLibrary), then yes. If the
DLL is loaded by LoadLibrary, it can be loaded and unloadded multiple times.
Since you're exposing classes by __declspec(dlle xport), I would expect that
the DLL is statically loaded.
DLL_THREAD_ATTA CH/DLL_THREAD_DETA CH
2. Does each a thread loads dll only once and unloads dll only once
during its life-time?
DLL_THREAD_ATTA CH will be called each time a thread is created. Threads
that existed before the DLL was loaded will never call DLL_THREAD_ATTA CH.
For a statically linked DLL, this means that the main thread will never call
thread attach (but it will call process attach).
Does DLL_THREAD_DETA CH occurs only when thread
terminates?


DLL_THREAD_DETA CH will be called each time a thread other than the main
tread terminates. It may be called on threads for which no
DLL_THREAD_ATTA CH call was received. The main thread (or any threadd that
directly calls ExitProcess) will result in a DLL_PROCESS_DET ACH call instead
of the thread detach.

-cd
Nov 17 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1834
by: John | last post by:
I tried to search for a solution to this, but I couldn't find one. Maybe I didn't look in the right place, but whatever.... Here is the problem - I have an extension "Myextension" created using SWIG from C++ code. I put this in my c:\php5\ext directory and pointed php.ini to load extensions from that directory. This is fine. However this extension depends upon some other custom DLLs I have coded in C++. The only way that the original...
4
10227
by: Michael Roper | last post by:
In Jesse Liberty's "Programming in C#" he says that "...an assembly must have exactly one entry point: DLLMain, WinMain, or Main. DLLMain is the entry point for DLLs..." In the MSDN ".Net Framework Developer's Guide" it says that "...each assembly can have only one entry point (that is, DllMain, WinMain, or Main..." So we've got "must" vs. "can" and "DLLMain" vs. "DllMain."
7
2430
by: Adam | last post by:
I have a managed cpp wrapper. Im using this in a native dll as a static variable. I need to free this library when the dll is done being used. The perfect place to do this is DllMain for DLL_PROCESS_DETACH, but I can't do this when touching managed code, even if its just calling "delete someObject;". Any recommendations on how to free this object (it needs to be freed when the dll is being unloaded from its caller). Since the CRT is...
3
3090
by: Jozsef Bekes | last post by:
Hi All, is there a mechanism just like DllMain in VC6, a function that gets called whenever an assembly gets loaded? Thank you for all answers. Jozsi
9
3599
by: Ulrich Proeller | last post by:
I currently hunting a problem with a MixedMode dll, which used to work well, until the .NET Framework 2.0 is installed on a machine. Since the, the dll fail when loaded stating that there is a problem with the "LoaderLock" bug. Thus, I made sure that the dll is initialized properly before any other call into the dll is made. I also gave my dll a empty DllMain as it was proposed by Microsoft. BOOL WINAPI DllMain(HINSTANCE hModule, DWORD...
2
6274
by: Vincent Fatica | last post by:
I can get Explorer to load (via LoadLibrary()) my DLL using VirtualAlloc(), WriteProcessMemory(), and CreateRemoteThread() (a technique discussed here occasionally). But I'd really like to jusy leave my DLL attached to Explorer until Explorer terminates (typically logoff or shutdown). But I notice that DllMain(DLL_PROCESS_DETACH) is not called when Explorer terminates after my DLL has been loaded as described above. Why isn't...
1
3205
by: =?Utf-8?B?U2VhbiBDb25uZXJ5?= | last post by:
Hi, Is it possible to define DllMain in a static library for use in dlls? The reason is that I am defining a platform abstraction for being loaded as a shared library and I figured the simplest way is to implement DllMain in a static library, which then calls mydllmain. I define this library (call it platform.lib) which has DllMain implemented with what should be unresolved references to mydllmain. I then link it into a bunch of...
2
2450
by: -Lost | last post by:
I had the PHP Startup: Unable to load dynamic library 'C:\php\ext\php_json.dll' - The specified module could not be found. I finally figured out the error. The problem is that the DLL relies on several other DLLs found in the C:\WINDOWS\system32\ folder. Now, the problem is this... I do not want to copy 20+ extensions to my system32 folder, nor do I want to copy 50+ DLLs from my system32 to my extension directory.
10
2352
by: =?Utf-8?B?R2Vvcmdl?= | last post by:
Hello everyone, From MSDN, http://msdn2.microsoft.com/en-us/library/ms682583.aspx parameter fdwReason of DllMain has four values, DLL_PROCESS_ATTACH
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
9994
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9863
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8872
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6673
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3959
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3562
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.