web-dev-qa-db-ja.com

Cでの現在のプロセスのメモリ使用量

Cで現在のプロセスのメモリ使用量を取得する必要があります。Linuxプラットフォームでこれを行う方法のコードサンプルを誰かが提供できますか?

私はメモリ使用量を取得するcat /proc/<your pid>/statusメソッドを知っていますが、Cでそれをキャプチャする方法がわかりません。

ところで、これはPHP拡張機能を変更するためのものです(許可された、私はCの初心者です。)PHP拡張機能API内にショートカットがある場合、それはさらに役立つでしょう。

23
scotts

通常のファイルと同じように、/procシステムで 'files'をいつでも開くことができます( 'self'シンボリックリンクを使用して、独自のpidを検索する必要がないようにします)。

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

もちろん、ファイルを解析して必要な情報を抽出する必要があります。

28
CB Bailey

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) を参照

28
caf

これは、メモリ使用量を取得する非常に醜くて移植できない方法ですが、getrusage()のメモリ追跡はLinuxでは基本的に役に立たないため、/ proc // statmを読むことが、Linuxで情報を取得する唯一の方法です。 。

誰かがメモリ使用量を追跡するためのよりクリーンな、またはできればクロスクロスの方法を知っているなら、私はその方法を学ぶことに非常に興味があります。

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)
14
James
#include <sys/resource.h>
#include <errno.h>

errno = 0;
struct rusage* memory = malloc(sizeof(struct rusage));
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を取得します

7
Jeff

私はこの投稿に遭遇しました: 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でテスト済み)

7
lepe

私はパーティーに遅れましたが、これは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);
}
4
Anti Earth

上記の構造体は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

0
mellthy