]> Creatis software - clitk.git/blob - common/clitkMemoryUsage.cxx
add option to display memory usage if statgrab is installed
[clitk.git] / common / clitkMemoryUsage.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
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.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17   ======================================================================-====*/
18
19 // clitk include
20 #include "clitkCommon.h"
21 #include "clitkMemoryUsage.h"
22
23 void clitk::PrintMemory(bool verbose, std::string s) 
24 {
25 #if CLITK_MEMORY_INFO == 1
26   if (verbose) {
27       //sleep(1); // wait to refresh memory ? need to let the system refresh the mem
28       int * entries = new int;
29       sg_process_stats * stat = new sg_process_stats;
30       int i=0; 
31       stat = sg_get_process_stats(entries);
32       // Search the current pid in the list of processes
33       while (stat[i].pid != getpid()) i++;
34       // Display total memory size 
35       if (s != "") std::cout << "==> " << s << ": ";
36       static int previous=0;
37       int mem = stat[i].proc_size/1000/1000; // in Mb
38       std::cout << mem << "Mb (" << mem-previous << "Mb)" << std::endl;
39       previous = mem;
40       //DD(stat[i].proc_resident/1000/1000);
41       //DD(stat[i].pid);
42     }
43 #endif
44   }
45