Tagged Questions

10
votes
6answers
6k views

How to translate a virtual memory address to a physical address?

In my C++ program (on Windows), I'm allocating a block of memory and can make sure it stays locked (unswapped and contiguous) in physical memory (i.e. using VirtualAllocEx(), MapUserPhysicalPages() ...
1
vote
3answers
741 views

Why is Available Physical Memory (dwAvailPhys) > Available Virtual Memory (dwAvailVirtual) in call GlobalMemoryStatus on Windows Vista x64

I am playing with an MSDN sample to do memory stress testing (see: http://msdn.microsoft.com/en-us/magazine/cc163613.aspx) and an extension of that tool that specifically eats physical memory (see ...
0
votes
0answers
121 views

Jna Java List of All Physical Disk and their Partition

can anyone help me to obtain a list of all physical disk with their partition? Can anyone publish a piece of code to do it or tell me all the step to do this? I know that there are already some ...
0
votes
0answers
57 views

IO with physical disk in Ring0

How do I write and read data from physical disk (can be HDD or SSD - i. e. the code should be abstracted of CHS, I know LBA can do) in Windows within Ring0? I need to be able to write or read exact ...