< prev index next >

src/os/aix/vm/os_aix.cpp

Print this page

        

*** 4898,4902 **** --- 4898,4907 ---- int os::compare_file_modified_times(const char* file1, const char* file2) { time_t t1 = get_mtime(file1); time_t t2 = get_mtime(file2); return t1 - t2; } + + bool os::map_memory_to_file(char* base, size_t size, const char* backingFileDir) { + VMError::report_and_die("Allocating object heap with backing file is not supported for AIX"); + return false; + } \ No newline at end of file
< prev index next >