src/os/windows/vm/os_windows.cpp

changeset 9327
f96fcd9e1e1b
parent 8660
719accf109f5
child 9334
95b3ba140211
     1.1 --- a/src/os/windows/vm/os_windows.cpp	Tue Feb 23 18:58:36 2016 -0500
     1.2 +++ b/src/os/windows/vm/os_windows.cpp	Thu Jun 14 09:15:08 2018 -0700
     1.3 @@ -5782,7 +5782,7 @@
     1.4    char* result = os::reserve_memory_special(large_allocation_size, os::large_page_size(), NULL, false);
     1.5    if (result == NULL) {
     1.6      if (VerboseInternalVMTests) {
     1.7 -      gclog_or_tty->print("Failed to allocate control block with size "SIZE_FORMAT". Skipping remainder of test.",
     1.8 +      gclog_or_tty->print("Failed to allocate control block with size " SIZE_FORMAT ". Skipping remainder of test.",
     1.9          large_allocation_size);
    1.10      }
    1.11    } else {
    1.12 @@ -5795,7 +5795,7 @@
    1.13      char* actual_location = os::reserve_memory_special(expected_allocation_size, os::large_page_size(), expected_location, false);
    1.14      if (actual_location == NULL) {
    1.15        if (VerboseInternalVMTests) {
    1.16 -        gclog_or_tty->print("Failed to allocate any memory at "PTR_FORMAT" size "SIZE_FORMAT". Skipping remainder of test.",
    1.17 +        gclog_or_tty->print("Failed to allocate any memory at " PTR_FORMAT " size " SIZE_FORMAT ". Skipping remainder of test.",
    1.18            expected_location, large_allocation_size);
    1.19        }
    1.20      } else {
    1.21 @@ -5803,7 +5803,7 @@
    1.22        os::release_memory_special(actual_location, expected_allocation_size);
    1.23        // only now check, after releasing any memory to avoid any leaks.
    1.24        assert(actual_location == expected_location,
    1.25 -        err_msg("Failed to allocate memory at requested location "PTR_FORMAT" of size "SIZE_FORMAT", is "PTR_FORMAT" instead",
    1.26 +        err_msg("Failed to allocate memory at requested location " PTR_FORMAT " of size " SIZE_FORMAT ", is " PTR_FORMAT " instead",
    1.27            expected_location, expected_allocation_size, actual_location));
    1.28      }
    1.29    }

mercurial