I came across a code in How to get memory usage at run time in c++?. The code is due to @DonWakefield I ran two instances of the code and got different results.
Code:
#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;
}
Test1#
int main()
{
 using std::cout;
 using std::endl;
 std::vector<int> vec1;
 double vm, rss;
 double vm1, rss1;
 process_mem_usage(vm, rss);
 vec1.resize(800000);
 process_mem_usage(vm1, rss1);
 cout << "VM: " << vm1-vm << "; RSS: " << rss1-rss << endl;
 vec1.erase(vec1.begin(), vec1.end());
 process_mem_usage(vm1, rss1);
 cout << "VM: " << vm1-vm << "; RSS: " << rss1-rss << endl;
 }
 Output:
 VM: 3128; RSS: 3208
 VM: 3132; RSS: 3316
 Test2#
 int main() 
 {
 using std::cout;
 using std::endl;
 int *vec1;
 double vm, rss;
 double vm1, rss1;
 process_mem_usage(vm, rss);
 vec1 = new int [800000];
 process_mem_usage(vm1, rss1);
 cout << "VM: " << vm1-vm << "; RSS: " << rss1-rss << endl;
 delete[] vec1;
 process_mem_usage(vm1, rss1);
 cout << "VM: " << vm1-vm << "; RSS: " << rss1-rss << endl;
 }
 Output:
 VM: 3128; RSS: 76
 VM: 4; RSS: 180
Why do these tests behave differently. Shouldn't the results be closer to each other? Even the memory consumed by vector/pointer is not reflected in the output.
Another question I have is that the output shows vector occupying large memory while test2# shows the int array occupying low memory. 80k ints would require 3125kB of memory. Why is there a difference?
 
     
    