Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

1
  • 2
    It would not be possible to be running Win10 32-bit and have Task Manager show a total of 16 GB, as it does in the OQ. And btw, the per-process limits the OS poses are on virtual memory, not RAM. There is no call you can make in Windows to allocate RAM per se. (Well, AWE, but that takes admin-level privilege and almost nothing uses that except some system programs.) You allocate virtual address space (say with VirtualAlloc) and then use it; as you use it, the OS allocates RAM to your process ("demand paging"). But of course not all of it has to be realized in RAM at one time. Commented Sep 20, 2017 at 9:57