64位Windows使用KERNEL64吗?
我正在使用 dumpbin 查看一些库,我注意到所有 64 位版本都链接到 KERNEL32。 64位Windows上没有KERNEL64吗?如果没有,为什么?
我所有的操作系统都是 32 位的,所以我不能只看。谷歌搜索没有发现任何有价值的东西,所以我怀疑没有 KERNEL64,但我仍然很好奇为什么会这样。
编辑:我后来发现这个非常有用。 MSDN x64 指南
I was looking at some libraries with dumpbin and I noticed that all the 64-bit versions were linked to KERNEL32. Is there no KERNEL64 on 64-bit Windows? If not, why?
All my operating systems are 32-bit so I can't just look. A google search brings up nothing worthwhile so I suspect that there is no KERNEL64 but I'm still curious as to why this is.
EDIT: I found this later which is pretty useful. MSDN guide to x64
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
即使在 64 位 Windows 上,它也始终称为
kernel32.dll
。出于同样的兼容性原因,system32
包含 64 位二进制文件,而syswow64
包含 32 位二进制文件。It's always called
kernel32.dll
, even on 64-bit windows. This is for the same compatibility reasons thatsystem32
contains 64-bit binaries, whilesyswow64
contains 32-bit binaries.在 64 位版本的 Windows 上,“kernel32.dll”之一包含 64 位代码,但仍称为 kernel32.dll。这至少是误导性的
希望以下链接能够提供此问题的解决方案
http:// www.howzatt.demon.co.uk/articles/DebuggingInWin64.html
http:// /www.viva64.com/en/l/0002/
http://blogs.msdn.com/b/aaron_margosis/archive/2012/12/ 10/using-ntfs-junctions-to-fix-application-compatibility-issues-on-64-bit-editions-of-windows.aspx
64 位 Windows 提供了这样一个“开箱即用”的环境,并且使用“Windows on Windows 64”子系统(缩写为 WOW64)支持 32 位应用程序,该子系统在用户模式下运行,将对操作系统内核的 32 位调用映射到等效的 64 位调用。这通常对调用程序来说几乎是不可见的。Windows 在 %windir%\system32 中提供了一组 64 位 DLL,在 %windir%\syswow64 中提供了一组等效的 32 位 DLL。事实上,此目录中的大部分二进制映像与 32 位 Windows 安装上的 system32 目录中的相同文件相同。 (在我看来,64 位 DLL 位于 system32 中,而 32 位 DLL 位于 syswow64 中,这是一个不幸的命名问题,但确实如此)
On the 64-bit versions of Windows one of the "kernel32.dll"s contains 64-bit code but is still called kernel32.dll. This is at least misleading
Hope the following links will give the solution for this
http://www.howzatt.demon.co.uk/articles/DebuggingInWin64.html
http://www.viva64.com/en/l/0002/
http://blogs.msdn.com/b/aaron_margosis/archive/2012/12/10/using-ntfs-junctions-to-fix-application-compatibility-issues-on-64-bit-editions-of-windows.aspx
64-bit Windows provides such an environment "out of the box" and supports 32-bit applications using the 'Windows on Windows 64' subsystem, abbreviated to WOW64, which runs in user mode and maps the 32-bit calls to the operating system kernel into an equivalent 64-bit call. This is normally almost invisible to the calling program.Windows provides a set of 64-bit DLLs in %windir%\system32 and an equivalent set of 32-bit DLLs in %windir%\syswow64. In fact the bulk of the binary images in this directory are identical to the same files in the system32 directory on a 32-bit Windows installation. (It seems to me an unfortunate naming issue that the 64-bit DLLs live in system32 and the 32-bit ones live in syswow64, but there it is)