Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何以编程方式生成 /proc/pid/maps 之类的内容?是否有一个 API 可以让我获得与 /proc/pid/maps 中相同的数据?解析文本可能有点不稳定。
/proc/$pid/maps 是API。如果您使用的是 C,则可以使用以下scanf格式可靠地解析此文件中的行:
/proc/$pid/maps
scanf
"%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n"
(来源)