1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://www.centreleonberard.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
20 #include "clitkCommon.h"
21 #include "clitkMemoryUsage.h"
26 void clitk::PrintMemory(bool verbose, std::string s)
28 #if CLITK_MEMORY_INFO == 1
30 static double previous=0;
31 double mem = GetMemoryUsageInMb();
32 if (s != "") std::cout << "==> " << s << ": ";
33 std::cout << mem << "MB (" << mem-previous << "MB)" << std::endl;
35 //DD(stat[i].proc_resident/1000/1000);
41 double clitk::GetMemoryUsageInMb()
43 #if CLITK_MEMORY_INFO == 1
44 //sleep(1); // wait to refresh memory ? need to let the system refresh the mem
46 sg_process_stats *stat;
50 stat = sg_get_process_stats(&entries);
54 // Search the current pid in the list of processes
55 while (stat->pid != getpid() && i < entries)
61 // Display total memory size
62 double mem = stat->proc_resident/1000/1000; // in MB