Salome HOME
[bos #32517][EDF] Dynamic log messages switched on and off by SALOME_VERBOSE environm...
[modules/smesh.git] / src / SMDS / SMDS_MemoryLimit.cxx
index 3086a8f7b887cd3966e3702cfc2168dce071da57..b3abfc82caf3bdc8b2d59eb207e9430bb46ae337 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 #include <sys/sysinfo.h>
 #endif
 
-#ifdef _DEBUG_
 #include <iostream>
-#endif
 
-int main (int argc, char ** argv)
+int main ()
 {
   // To better understand what is going on here, consult bug [SALOME platform 0019911]
 #if !defined WIN32 && !defined __APPLE__
@@ -43,10 +41,10 @@ int main (int argc, char ** argv)
     return -1;
   unsigned long freeRamKb = ( si.freeram  * si.mem_unit ) / 1024;
 
-  // totat RAM size in Gb, float is in order not to have 1 instead of 1.9
+  // total RAM size in Gb, float is in order not to have 1 instead of 1.9
   float totalramGb = float( si.totalram * si.mem_unit ) / 1024 / 1024 / 1024;
 
-  // nb Kbites to allocate at one step. Small nb leads to hung up
+  // nb Kbytes to allocate at one step. Small nb leads to hung up
   const int stepKb = int( 5 * totalramGb );
 
   unsigned long nbSteps = freeRamKb / stepKb * 2;
@@ -59,9 +57,9 @@ int main (int argc, char ** argv)
     }
   } catch (...) {}
 
-// #ifdef _DEBUG_
-//   std::cout << freeRamKb / 1024 << std::endl;
-// #endif
+// if (SALOME::VerbosityActivated())
+//  std::cout << freeRamKb / 1024 << std::endl;
+
   return freeRamKb / 1024;
 
 #endif