< prev index next >

src/hotspot/share/gc/shared/memset_with_concurrent_readers.hpp

Print this page
rev 59189 : imported patch hotspot
rev 59190 : imported patch hotspot-01

@@ -30,12 +30,10 @@
 #include <stddef.h>
 #include <string.h>
 
 // Fill a block of memory with value, like memset, but with the
 // understanding that there may be concurrent readers of that memory.
-void memset_with_concurrent_readers(void* to, int value, size_t size);
-
 inline void memset_with_concurrent_readers(void* to, int value, size_t size) {
   ::memset(to, value, size);
 }
 
 #endif // SHARE_GC_SHARED_MEMSET_WITH_CONCURRENT_READERS_HPP
< prev index next >