Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

embedded - How to get a process variable value from a map file address in Linux

For example, if I have a map file like this,  0x00001000 _hoge how do I get the value of the variable "hoge" from this address(0x00001000) in a process running in Linux?

In the case of a normal (without OS) embedded program, it is processed only by the physical address, so I think that the following code is fine.  value = (*(volatile unsigned int*)0x00001000)

On the other hand, process running in Linux use virtual addresses, so I don't think this method works.

[add more details]

This is a story in an environment where linux is embedded in a microcomputer. I use the programming language c(gcc). The purpose is to create a function that sends the address described in the mapfile to the microcomputer from the outside and sends back the value of the corresponding variable.

question from:https://stackoverflow.com/questions/65924712/how-to-get-a-process-variable-value-from-a-map-file-address-in-linux

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...