gpt4 book ai didi

c++ - 如何使用 C++ 在运行时获取内存使用情况?

转载 作者:太空宇宙 更新时间:2023-11-04 13:00:53 24 4
gpt4 key购买 nike

我需要在我的程序运行时获取内存使用 VIRT 和 RES 并显示它们。

到目前为止我尝试了什么:

getrusage ( http://linux.die.net/man/2/getrusage )

int who = RUSAGE_SELF; 
struct rusage usage;
int ret;

ret=getrusage(who,&usage);

cout<<usage.ru_maxrss;

但我总是得到 0。

最佳答案

在 Linux 上,我从未找到过 ioctl() 解决方案。对于我们的应用程序,我们编写了一个基于读取 /proc/pid 中文件的通用实用例程。有许多这样的文件会给出不同的结果。这是我们解决的问题(问题被标记为 C++,我们使用 C++ 结构处理 I/O,但如果需要,它应该很容易适应 C i/o 例程):

#include <unistd.h>
#include <ios>
#include <iostream>
#include <fstream>
#include <string>

//////////////////////////////////////////////////////////////////////////////
//
// process_mem_usage(double &, double &) - takes two doubles by reference,
// attempts to read the system-dependent data for a process' virtual memory
// size and resident set size, and return the results in KB.
//
// On failure, returns 0.0, 0.0

void process_mem_usage(double& vm_usage, double& resident_set)
{
using std::ios_base;
using std::ifstream;
using std::string;

vm_usage = 0.0;
resident_set = 0.0;

// 'file' stat seems to give the most reliable results
//
ifstream stat_stream("/proc/self/stat",ios_base::in);

// dummy vars for leading entries in stat that we don't care about
//
string pid, comm, state, ppid, pgrp, session, tty_nr;
string tpgid, flags, minflt, cminflt, majflt, cmajflt;
string utime, stime, cutime, cstime, priority, nice;
string O, itrealvalue, starttime;

// the two fields we want
//
unsigned long vsize;
long rss;

stat_stream >> pid >> comm >> state >> ppid >> pgrp >> session >> tty_nr
>> tpgid >> flags >> minflt >> cminflt >> majflt >> cmajflt
>> utime >> stime >> cutime >> cstime >> priority >> nice
>> O >> itrealvalue >> starttime >> vsize >> rss; // don't care about the rest

stat_stream.close();

long page_size_kb = sysconf(_SC_PAGE_SIZE) / 1024; // in case x86-64 is configured to use 2MB pages
vm_usage = vsize / 1024.0;
resident_set = rss * page_size_kb;
}

int main()
{
using std::cout;
using std::endl;

double vm, rss;
process_mem_usage(vm, rss);
cout << "VM: " << vm << "; RSS: " << rss << endl;
}

关于c++ - 如何使用 C++ 在运行时获取内存使用情况?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33918028/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com