30

我需要在 C 中获取当前进程的内存使用情况。有人可以提供如何在 Linux 平台上执行此操作的代码示例吗?

我知道cat /proc/<your pid>/status获取内存使用的方法,但我不知道如何在 C 中捕获它。

顺便说一句,这是我正在修改的 PHP 扩展(当然,我是 C 新手)。如果 PHP 扩展 API 中有可用的快捷方式,那将更有帮助。

4

7 回答 7

31

getrusage函数返回一个结构,其中包含有关当前进程的大量数据,包括:

long   ru_ixrss;         /* integral shared memory size */
long   ru_idrss;         /* integral unshared data size */
long   ru_isrss;         /* integral unshared stack size */

但是,最新的 linux 文档说明了这 3 个字段

(unmaintained) This field is currently unused on Linux

然后手册将其定义为:

并非所有字段都已填写;内核将未维护的字段设置为零。(提供未维护的字段是为了与其他系统兼容,并且有一天它们可能会在 Linux 上得到支持。)

参见getrusage(2)

于 2009-10-13T05:58:02.733 回答
29

您始终可以像打开/proc常规文件一样打开系统中的“文件”(使用“自我”符号链接,因此您不必查找自己的 pid):

FILE* status = fopen( "/proc/self/status", "r" );

当然,您现在必须解析文件以挑选出您需要的信息。

于 2009-10-13T06:17:28.010 回答
17

这是一种非常丑陋且不可移植的获取内存使用情况的方法,但由于 getrusage() 的内存跟踪在 Linux 上基本上是无用的,因此读取 /proc/<pid>/statm 是我所知道的唯一获得Linux 相关信息。

如果有人知道更清洁的,或者最好是更多的跨 Unix 跟踪内存使用的方法,我会非常有兴趣学习如何。

typedef struct {
    unsigned long size,resident,share,text,lib,data,dt;
} statm_t;

void read_off_memory_status(statm_t& result)
{
  unsigned long dummy;
  const char* statm_path = "/proc/self/statm";

  FILE *f = fopen(statm_path,"r");
  if(!f){
    perror(statm_path);
    abort();
  }
  if(7 != fscanf(f,"%ld %ld %ld %ld %ld %ld %ld",
    &result.size,&result.resident,&result.share,&result.text,&result.lib,&result.data,&result.dt))
  {
    perror(statm_path);
    abort();
  }
  fclose(f);
}

从 proc(5) 手册页:

   /proc/[pid]/statm
          Provides information about memory usage, measured in pages.  
          The columns are:

              size       total program size
                         (same as VmSize in /proc/[pid]/status)
              resident   resident set size
                         (same as VmRSS in /proc/[pid]/status)
              share      shared pages (from shared mappings)
              text       text (code)
              lib        library (unused in Linux 2.6)
              data       data + stack
              dt         dirty pages (unused in Linux 2.6)
于 2011-08-27T02:50:30.267 回答
8
#include <sys/resource.h>
#include <errno.h>

errno = 0;
struct rusage memory;
getrusage(RUSAGE_SELF, &memory);
if(errno == EFAULT)
    printf("Error: EFAULT\n");
else if(errno == EINVAL)
    printf("Error: EINVAL\n");
printf("Usage: %ld\n", memory.ru_ixrss);
printf("Usage: %ld\n", memory.ru_isrss);
printf("Usage: %ld\n", memory.ru_idrss);
printf("Max: %ld\n", memory.ru_maxrss);

我使用了这段代码,但由于某种原因,我在所有 4 个 printf() 中总是得到 0

于 2009-12-19T19:08:35.043 回答
8

我遇到了这篇文章:http ://appcrawler.com/wordpress/2013/05/13/simple-example-of-tracking-memory-using-getrusage/

简化版:

#include <sys/resource.h>
#include <stdio.h>

int main() {
  struct rusage r_usage;
  getrusage(RUSAGE_SELF,&r_usage);
  // Print the maximum resident set size used (in kilobytes).
  printf("Memory usage: %ld kilobytes\n",r_usage.ru_maxrss);
  return 0;
}

(在 Linux 3.13 中测试)

于 2015-07-06T08:16:03.627 回答
7

我参加聚会迟到了,但这对于在 linux 上寻找常驻和虚拟(以及迄今为止的峰值)记忆的其他人可能会有所帮助。

这可能很糟糕,但它可以完成工作。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>


/*
 * Measures the current (and peak) resident and virtual memories
 * usage of your linux C process, in kB
 */
void getMemory(
    int* currRealMem, int* peakRealMem,
    int* currVirtMem, int* peakVirtMem) {

    // stores each word in status file
    char buffer[1024] = "";

    // linux file contains this-process info
    FILE* file = fopen("/proc/self/status", "r");

    // read the entire file
    while (fscanf(file, " %1023s", buffer) == 1) {

        if (strcmp(buffer, "VmRSS:") == 0) {
            fscanf(file, " %d", currRealMem);
        }
        if (strcmp(buffer, "VmHWM:") == 0) {
            fscanf(file, " %d", peakRealMem);
        }
        if (strcmp(buffer, "VmSize:") == 0) {
            fscanf(file, " %d", currVirtMem);
        }
        if (strcmp(buffer, "VmPeak:") == 0) {
            fscanf(file, " %d", peakVirtMem);
        }
    }
    fclose(file);
}
于 2017-11-28T12:02:40.083 回答
0

上述结构取自 4.3BSD Reno。并非所有字段在 Linux 下都是有意义的。在 linux 2.4 中,仅保留 ru_utime、ru_stime、ru_minflt 和 ru_majflt 字段。从 Linux 2.6 开始,还维护了 ru_nvcsw 和 ru_nivcsw。

http://www.atarininja.org/index.py/tags/code

于 2010-04-19T19:16:21.260 回答