comparison src/share/vm/gc_implementation/g1/g1StringDedup.hpp @ 17947:1772223a25a2

8037112: gc/g1/TestHumongousAllocInitialMark.java caused SIGSEGV Reviewed-by: brutisso, mgerdin
author pliden
date Fri, 11 Apr 2014 11:00:12 +0200
parents 595c0f60d50d
children c3fcc09c9239
comparison
equal deleted inserted replaced
17946:997fd9660dd5 17947:1772223a25a2
108 // Returns true if both G1 and string deduplication is enabled. 108 // Returns true if both G1 and string deduplication is enabled.
109 static bool is_enabled() { 109 static bool is_enabled() {
110 return _enabled; 110 return _enabled;
111 } 111 }
112 112
113 // Initialize string deduplication.
113 static void initialize(); 114 static void initialize();
115
116 // Stop the deduplication thread.
117 static void stop();
114 118
115 // Immediately deduplicates the given String object, bypassing the 119 // Immediately deduplicates the given String object, bypassing the
116 // the deduplication queue. 120 // the deduplication queue.
117 static void deduplicate(oop java_string); 121 static void deduplicate(oop java_string);
118 122