< prev index next >

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

Print this page

        

@@ -28,13 +28,10 @@
 #include "utilities/macros.hpp"
 
 #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);
 
 #ifdef SPARC

@@ -48,8 +45,6 @@
   ::memset(to, value, size);
 }
 
 #endif // End of target dispatch.
 
-#endif // INCLUDE_ALL_GCS
-
 #endif // SRC_SHARE_VM_GC_SHARED_MEMSETWITHCONCURRENTREADERS_HPP
< prev index next >