]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fixed documentation for Utilities::System::MemoryStats Struct Reference 3651/head
authortcclevenger <tcleven@clemson.edu>
Thu, 1 Dec 2016 04:12:14 +0000 (23:12 -0500)
committertcclevenger <tcleven@clemson.edu>
Thu, 1 Dec 2016 23:11:51 +0000 (18:11 -0500)
Comments in deal.II/base/utilities.h were behind variable declarations
leading to wrong placement in online documentation

include/deal.II/base/utilities.h

index 8b7f034dd94f7e6133c32247bdbd3627a7e07937..d133c885be50d40ead2542038958256312aa045a 100644 (file)
@@ -389,10 +389,25 @@ namespace Utilities
      */
     struct MemoryStats
     {
-      unsigned long int VmPeak; /** peak virtual memory size in kB */
-      unsigned long int VmSize; /** current virtual memory size in kB */
-      unsigned long int VmHWM; /** peak resident memory size in kB */
-      unsigned long int VmRSS; /** current resident memory size in kB */
+      /**
+       * Peak virtual memory size in kB.
+       */
+      unsigned long int VmPeak;
+
+      /**
+       * Current virtual memory size in kB.
+       */
+      unsigned long int VmSize;
+
+      /**
+       * Peak resident memory size in kB. Also known as "high water mark" (HWM).
+       */
+      unsigned long int VmHWM;
+
+      /**
+       * Current resident memory size in kB. Also known as "resident set size" (RSS).
+       */
+      unsigned long int VmRSS;
     };
 
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.