We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e665618 commit c5e11caCopy full SHA for c5e11ca
src/hotspot/cpu/aarch64/gc/z/zGlobals_aarch64.cpp
@@ -25,6 +25,7 @@
25
#include "gc/shared/gcLogPrecious.hpp"
26
#include "gc/z/zGlobals.hpp"
27
#include "runtime/globals.hpp"
28
+#include "runtime/os.hpp"
29
#include "utilities/globalDefinitions.hpp"
30
#include "utilities/powerOfTwo.hpp"
31
@@ -187,7 +188,7 @@ static size_t probe_valid_max_address_bit() {
187
188
munmap(result_addr, page_size);
189
}
190
- log_info_p(gc, init)("Probing address space for the highest valid bit: %zu", max_address_bit);
191
+ log_info_p(gc, init)("Probing address space for the highest valid bit: " SIZE_FORMAT, max_address_bit);
192
if (max_address_bit < MINIMUM_MAX_ADDRESS_BIT) {
193
return MINIMUM_MAX_ADDRESS_BIT;
194
0 commit comments