< prev index next >

src/hotspot/share/runtime/os.cpp

Print this page

        

*** 248,257 **** --- 248,265 ---- bool os::dll_build_name(char* buffer, size_t size, const char* fname) { int n = jio_snprintf(buffer, size, "%s%s%s", JNI_LIB_PREFIX, fname, JNI_LIB_SUFFIX); 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 // of size MAX_PATH. static bool conc_path_file_and_check(char *buffer, char *printbuffer, size_t printbuflen,
< prev index next >