PDA

Click to See Complete Forum and Search --> : Memory structure


hmm
May 28th, 2001, 03:09 PM
Hello,

What is meant by the term 'paging file' when addressing memory usage.?

Example

dwTotalPageFile:
Indicates the total number of bytes that can be stored in the paging file

dwAvailPageFile
Indicates the number of bytes available in the paging file.


I'm trying to use the api's call 'GlobalMemoryStatus', but I'm not sure what part these members play

Thanks for the help

Hmm

jim mcnamara
May 29th, 2001, 10:25 AM
Virtual memory systems have more memory available to a process than exists in the hardware. Some allocated memory is sent to disk because it is not being used and the OS thinks more free physical memory is needed. The place on disk where the 'extra' memory is stored is a page file - so called becasue it stores pages of memory.

hmm
May 29th, 2001, 05:37 PM
Thank you Jim

:D

hmm