--- old/src/hotspot/share/runtime/os.cpp 2018-03-08 07:05:37.747060062 -0500 +++ new/src/hotspot/share/runtime/os.cpp 2018-03-08 07:05:37.553060056 -0500 @@ -250,6 +250,14 @@ return (n != -1); } +#if !defined(LINUX) && !defined(_WINDOWS) +bool os::committed_in_range(address start, size_t size, address& committed_start, size_t& committed_size) { + committed_start = start; + committed_size = size; + return true; +} +#endif + // Helper for dll_locate_lib. // Pass buffer and printbuffer as we already printed the path to buffer // when we called get_current_directory. This way we avoid another buffer