LKBEN11179: Does a DLL have an own stack and heap?


Symptom

You would like to have a bit more information about DLLs

Cause

none

Solution

When a program is started, it is loaded into memory. During this process, the program becomes a stack and a heap size. As long as the executable or dll is on disk, it does not have a stack or heap. A DLL is dynamically loaded in the same address space as the executable program. After it's loading it shares the stack and heap of the executable. So when a DLL function is called, the same stack is used as when a function in the program is called. This is the case in Windows and Linux although the binary format is different. Windows uses the PE format and Linux used the ELF format.

Disclaimer:

The information provided in this document is intended for your information only. Lubby makes no claims to the validity of this information. Use of this information is at own risk!

About the Author

Author: Wim Peeters - Keskon GmbH & Co. KG

Wim Peeters is electronics engineer with an additional master in IT and over 30 years of experience, including time spent in support, development, consulting, training and database administration. Wim has worked with SQL Server since version 6.5. He has developed in C/C++, Java and C# on Windows and Linux. He writes knowledge base articles to solve IT problems and publishes them on the Lubby Knowledge Platform.