Re: [转载] windows access memory limit# Windows - 看得见风景的窗口
e*s
1 楼
In Win32, every process has a 4Gb virtual address space. This means that
valid addresses are in the range of 0x00000000 to 0xFFFFFFFF.
In DOS and Win16, all apps share the same address space. As a consequence,
an app can write over another app memory, including the OS. Of course this
leads to the very unpleasant situation that an app behavior depends on other
apps status. If an app writes over the system code or data areas, the system
becomes unstable and probably will crash.
Win32 solved this p
valid addresses are in the range of 0x00000000 to 0xFFFFFFFF.
In DOS and Win16, all apps share the same address space. As a consequence,
an app can write over another app memory, including the OS. Of course this
leads to the very unpleasant situation that an app behavior depends on other
apps status. If an app writes over the system code or data areas, the system
becomes unstable and probably will crash.
Win32 solved this p