test/hotspot/gtest/gc/shared/test_memset_with_concurrent_readers.cpp
changeset 49982 9042ffe5b7fe
parent 47216 71c04702a3d5
equal deleted inserted replaced
49981:bd0a95bec96b 49982:9042ffe5b7fe
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  */
    22  */
    23 
    23 
    24 #include "precompiled.hpp"
    24 #include "precompiled.hpp"
    25 #include <string.h>
    25 #include "gc/shared/memset_with_concurrent_readers.hpp"
    26 #include "utilities/globalDefinitions.hpp"
    26 #include "utilities/globalDefinitions.hpp"
    27 #include <sstream>
       
    28 #include "gc/shared/memset_with_concurrent_readers.hpp"
       
    29 #include "unittest.hpp"
    27 #include "unittest.hpp"
    30 
    28 
    31 #if INCLUDE_ALL_GCS
    29 #include <string.h>
       
    30 #include <sstream>
    32 
    31 
    33 static unsigned line_byte(const char* line, size_t i) {
    32 static unsigned line_byte(const char* line, size_t i) {
    34   return unsigned(line[i]) & 0xFF;
    33   return unsigned(line[i]) & 0xFF;
    35 }
    34 }
    36 
    35 
    94         }
    93         }
    95       }
    94       }
    96     }
    95     }
    97   }
    96   }
    98 }
    97 }
    99 #endif