我是靠谱客的博主 秀丽故事,最近开发中收集的这篇文章主要介绍linux下查看运行程序的内存空间,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ubuntu9.10

在程序运行是使用/proc文件系统查看程序的内存空间。

 

 

/*

   Program showes the memory map of itself.

   Author:Arthur Bryant 

   memory_map.c

   Date: 3.2, 2010

 */

#include <stdio.h>

#include <unistd.h>

 

/*Change the iterger to string*/

void itoa(int n, char *s)

{

char temp;

int i = 0, j;

int len;

do {

 

*(s + i++) = n % 10 + '0'; //鍙栦笅涓€涓暟瀛?

}

while ((n /= 10) > 0); //鍒犻櫎璇ユ暟瀛?

j = 0;

len = i;

i--;

/*Reverse string*/

while (j < i) {

temp = *(s + i);

*(s + i) = *(s + j);

*(s + j) = temp;

i--;

j++;

}

*(s + len) = '/0';

}

/*Build instruction*/

void make_command(char * command)

{

char s[10];

int pid;

pid = (int)getpid();

char *str1 = "cat /proc/";

char *str2 = "/maps";

 

itoa(pid, s);

strcat(command, str1);

strcat(command, s);

strcat(command, str2);

 

}

 

int main(int argc, char *argv[])

{

char command[30] = "";

make_command(command);

printf("%s/n", command);

/*run the command in shell to show you memory map*/

system(command);

 

return 0;

}

 

最后

以上就是秀丽故事为你收集整理的linux下查看运行程序的内存空间的全部内容,希望文章能够帮你解决linux下查看运行程序的内存空间所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部