src/hotspot/share/gc/shared/memset_with_concurrent_readers.hpp
changeset 49712 9e059253786b
parent 47216 71c04702a3d5
child 53244 9807daeb47c4
--- a/src/hotspot/share/gc/shared/memset_with_concurrent_readers.hpp	Fri Apr 06 11:37:33 2018 +0200
+++ b/src/hotspot/share/gc/shared/memset_with_concurrent_readers.hpp	Fri Apr 06 11:37:34 2018 +0200
@@ -30,9 +30,6 @@
 #include <stddef.h>
 #include <string.h>
 
-// Only used by concurrent collectors.
-#if INCLUDE_ALL_GCS
-
 // 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);
@@ -50,6 +47,4 @@
 
 #endif // End of target dispatch.
 
-#endif // INCLUDE_ALL_GCS
-
 #endif // SRC_SHARE_VM_GC_SHARED_MEMSETWITHCONCURRENTREADERS_HPP