Comments in deal.II/base/utilities.h were behind variable declarations
leading to wrong placement in online documentation
*/
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