Index: src/heap.h |
diff --git a/src/heap.h b/src/heap.h |
index 42546af5d3e4c6aa0f663903226544a0af884cb8..b1dc917a84486d878ad65ba5111cfdde660fed96 100644 |
--- a/src/heap.h |
+++ b/src/heap.h |
@@ -1596,7 +1596,7 @@ class Heap { |
} |
// Returns maximum GC pause. |
- int get_max_gc_pause() { return max_gc_pause_; } |
+ float get_max_gc_pause() { return max_gc_pause_; } |
// Returns maximum size of objects alive after GC. |
intptr_t get_max_alive_after_gc() { return max_alive_after_gc_; } |
@@ -2184,7 +2184,7 @@ class Heap { |
size_t object_sizes_last_time_[OBJECT_STATS_COUNT]; |
// Maximum GC pause. |
- int max_gc_pause_; |
+ float max_gc_pause_; |
Michael Starzinger
2013/02/11 15:56:31
IMHO, this should actually use double precision as
|
// Total time spent in GC. |
int total_gc_time_ms_; |