上传者: 42166623
|
上传时间: 2021-11-21 15:41:59
|
文件大小: 6KB
|
文件类型: -
proc_maps_parser
一个轻量级的库,用于解析Linux的/ proc / [pid] / maps文件,该文件包含进程的内存映射
/ proc / [pid] / maps
包含当前映射的内存区域及其访问权限的文件。 有关内存映射的更多信息,请参见mmap(2)。 #memory映射区域proc_maps_parser表示具有此C结构的存储区域。
struct procmaps_struct{
void * addr_start; // < start address of the region
void * addr_end; // < end address of the region
unsigned long length; // < length of the region by bytes
char perm[ 5 ]; // < permi