Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在 Visual Studio 中在我的应用程序正在使用的某个内存上设置数据断点,并且该内存被再次释放,如果其他应用程序使用我的程序的内存,数据断点会中断吗?
如果这有什么不同的话,我正在工作C++。
C++
数据断点基于虚拟地址,因此其他进程无法访问它,除非通过类似WriteProcessMemory的东西(我很确定)也不会触发断点(因为在这种情况下,写入完成通过内核代码,它不会设置断点)。
WriteProcessMemory