File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
src/main/ruby/truffleruby/core Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -85,18 +85,18 @@ def self.stat(option = nil)
85
85
:minor_gc_count => minor_count ,
86
86
:major_gc_count => major_count ,
87
87
:unknown_count => unknown_count , # if nonzero, major or minor count needs to be updated for this GC case
88
- :committed => 0.0 ,
89
- :init => 0.0 ,
90
- :max => 0.0 ,
91
- :used => 0.0 ,
92
- :peak_committed => 0.0 ,
93
- :peak_init => 0.0 ,
94
- :peak_max => 0.0 ,
95
- :peak_used => 0.0 ,
96
- :last_committed => 0.0 ,
97
- :last_init => 0.0 ,
98
- :last_max => 0.0 ,
99
- :last_used => 0.0 ,
88
+ :committed => 0 ,
89
+ :init => 0 ,
90
+ :max => 0 ,
91
+ :used => 0 ,
92
+ :peak_committed => 0 ,
93
+ :peak_init => 0 ,
94
+ :peak_max => 0 ,
95
+ :peak_used => 0 ,
96
+ :last_committed => 0 ,
97
+ :last_init => 0 ,
98
+ :last_max => 0 ,
99
+ :last_used => 0 ,
100
100
:heap_available_slots => committed , # should be the same as the calculated committed
101
101
:heap_live_slots => used , # should be the same as the calculated used
102
102
:heap_free_slots => committed - used ,
You can’t perform that action at this time.
0 commit comments