Searched refs:new_threshold (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DlowMemoryDetector.hpp98 size_t set_high_threshold(size_t new_threshold) { argument
100 assert(new_threshold >= _low_threshold, "new_threshold must be >= _low_threshold");
102 _high_threshold = new_threshold;
106 size_t set_low_threshold(size_t new_threshold) { argument
108 assert(new_threshold <= _high_threshold, "new_threshold must be <= _high_threshold");
110 _low_threshold = new_threshold;

Completed in 44 milliseconds