src/hotspot/os/posix/gc/z/zVirtualMemory_posix.cpp
changeset 58814 bfb419c66ae9
parent 58787 32d39d9525f9
--- a/src/hotspot/os/posix/gc/z/zVirtualMemory_posix.cpp	Mon Oct 28 11:26:00 2019 +0100
+++ b/src/hotspot/os/posix/gc/z/zVirtualMemory_posix.cpp	Mon Oct 28 11:26:53 2019 +0100
@@ -29,6 +29,10 @@
 #include <sys/mman.h>
 #include <sys/types.h>
 
+void ZVirtualMemoryManager::initialize_os() {
+  // Does nothing
+}
+
 static void unmap(uintptr_t start, size_t size) {
   const int res = munmap((void*)start, size);
   assert(res == 0, "Failed to unmap memory");