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() ...
3
votes
1answer
80 views
Get number of physical processors inside virtual machine
I'd like to know if there's a way to learn the number of physical CPU-s of a host computer when my code is running inside a VM.
I'm looking for C++/assembly solutions that run in Windows and under ...