What does WARNING: [something] overlaps [something] in Windows Debugger mean?

こ雲淡風輕ζ 提交于 2019-12-07 03:09:57

问题


I am editing the Windows Research Kernel (WRK) for part of a uni project, and occasionally when I start up the virtual machine running my kernel, the Windows Debugger says things like:

WARNING: rdpdr overlaps raspptp_baa74000
WARNING: ks overlaps rdpdr_baa26000
WARNING: ks overlaps raspptp_baa74000
WARNING: update_baa11000 overlaps ks_ba9fe000
WARNING: update_baa11000 overlaps rdpdr_baa26000
WARNING: tcpip overlaps tcpip_ba83e000

What does this actually mean?


回答1:


This usually happens when the kernel debugger misses events (such as shutdown or module unload). The warning means that the debugger just received a module load event for a driver in a range that overlaps another driver (the overlap is usually not real, it is just that the debugger thinks there is a overlap because it did not know about the unload).

This is fixed by using .reload.



来源:https://stackoverflow.com/questions/6051492/what-does-warning-something-overlaps-something-in-windows-debugger-mean

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!