CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2003
    Posts
    159

    Windows (2k) memory page size

    I was looking though MSDN but couldn't find this... what is the page size of memory in windows (2K)? ie what is the smallest chunk of memory windows allocates to a process (or thread)?

  2. #2
    Join Date
    Sep 2001
    Location
    San Diego
    Posts
    2,147
    In Windows 2000 processes are allocated memory in blocks of 4-K pages.

    This means it will round up to the nearest 4K boundry.

    Source: Inside Microsoft Windows 2000 Third Edition, Microsoft Press.

    Hope this helps,

    - Nigel

  3. #3
    Join Date
    Apr 2003
    Location
    china
    Posts
    1

    oh!it's a simple question

    4-k page size

  4. #4
    Join Date
    May 2002
    Posts
    3
    The GetSystemInfo function fills a SYSTEM_INFO struct. The size of a virtual page is stored in the dwPageSize field.

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