We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7977e38 commit 8bf46c7Copy full SHA for 8bf46c7
test/hotspot/gtest/runtime/test_os.cpp
@@ -523,7 +523,7 @@ TEST_VM(os, show_mappings_small_range) {
523
TEST_VM(os, show_mappings_full_range) {
524
// Reserve a small range and fill it with a marker string, should show up
525
// on implementations displaying range snippets
526
- char* p = os::reserve_memory(1 * M, mtInternal);
+ char* p = os::reserve_memory(1 * M, false, mtInternal);
527
if (p != nullptr) {
528
if (os::commit_memory(p, 1 * M, false)) {
529
strcpy(p, "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
0 commit comments