标签: memory dll process virtual memory-address
DLL可以映射到不同虚拟地址的两个进程的虚拟地址空间吗?如果是这样,会出现什么问题?他们能解决吗?如果没有,可以采取哪些措施来消除它们?
答案 0 :(得分:-1)
是的,这是可能的。
Win32 DLLs are mapped into the address space of the calling process. By default, each process using a DLL has its own instance of all the DLLs global and static variables.