Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
BroadcastCommunity.qnx.com will be offline from May 31 6:00pm until June 2 12:00AM for upcoming system upgrades. For more information please go to https://community.qnx.com/sf/discussion/do/listPosts/projects.bazaar/discussion.bazaar.topc28418
Forum Topic - identify physical RAM memory address from structure _procfs_map_info(DCMD_PROC_PAGEDATA) : Page 1 of 9 (9 Items)
   
identify physical RAM memory address from structure _procfs_map_info(DCMD_PROC_PAGEDATA)  
Hello All,

I have to find actual physical memory address used by process . I am using structure _procfs_map_info with 
DCMD_PROC_PAGEDATA call as shown below.
(http://www.qnx.com/developers/docs/7.1/index.html#com.qnx.doc.neutrino.cookbook/topic/s3_procfs_DCMD_PROC_MAPINFO.html)


typedef struct _procfs_map_info {
  uint64_t   vaddr;
  uint64_t   size;
  uint32_t   flags;
  dev_t      dev;
  off_t      offset;
  ino_t      ino;
} procfs_mapinfo;

i couldn't find much info about variables dev,offset and ino. Could you please help me understand this?

is it possible to determine physical RAM address with this structure(using vaddr, offset etc..)?

Thank you!