CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7

Threaded View

  1. #6
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,633

    Re: Question marks in memory window

    All the process' memory space is virtual. And virtual memory page remains to be virtual one until VirtualAllocEx call instructs VMM to allocate and commit a physical memory page to the address space. So, the question marks indicate uncommitted memory. Reserved or not, don't know, but uncommitted for sure.
    Last edited by Igor Vartanov; January 2nd, 2013 at 09:29 AM.
    Best regards,
    Igor

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured