You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jemalloc.Benchmarks/BenchmarkStatisticColumn.cs
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -93,13 +93,11 @@ public bool IsAvailable(Summary summary)
93
93
publicoverridestringToString()=>ColumnName;
94
94
#endregion
95
95
96
-
#region Fields
97
-
98
-
#endregion
99
-
100
96
#region Available columns
101
-
publicstaticreadonlyIColumnPrivateMemory=newBenchmarkStatisticColumn("PrivateMemory","Private memory allocated (native and managed, inclusive, 1KB = 1024B)");
102
-
97
+
publicstaticreadonlyIColumnPrivateMemory=newBenchmarkStatisticColumn("PrivateMemory","Total memory allocated for process(native and managed, 1KB = 1024B)");
98
+
publicstaticreadonlyIColumnWorkingSet=newBenchmarkStatisticColumn("WorkingSet","Memory that is currently being used by process(native and managed, 1KB = 1024B)");
99
+
publicstaticreadonlyIColumnJemAllocated=newBenchmarkStatisticColumn("JemAllocated","Total memory allocated by jemalloc(native only, inclusive, 1KB = 1024B)");
100
+
publicstaticreadonlyIColumnJemResident=newBenchmarkStatisticColumn("JemResident","Resident memory allocated by jemalloc(native only, inclusive, 1KB = 1024B)");
0 commit comments