Under Linux, C++, and GCC, can I get a physical address for a given virtual address? I know I won’t be able to manipulate the physical address as a physical address.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Nope. There’s no guarantee that a virtual address is based off a physical address (it may be a mapped file with no representation in RAM, for instance.) As well, the OS is free to move virtual addresses around in physical memory at any time, so there’s no guarantee that a physical address will remain correct or valid.
Why do you think you need a physical address? What are you trying to accomplish?