查看进程内存布局

gdb好像没有专门查看进程内存布局的命令,所以干脆执行外部shell命令
1、! shell命令

!cat  /proc/`pidof a.out`/maps

2、shell shell命令

shell cat  /proc/`pidof a.out`/maps

你可能感兴趣的:(查看进程内存布局)