--- old/src/os/aix/vm/os_aix.cpp 2016-08-15 19:48:59.609673600 -0700 +++ new/src/os/aix/vm/os_aix.cpp 2016-08-15 19:48:59.220634000 -0700 @@ -4900,3 +4900,13 @@ time_t t2 = get_mtime(file2); return t1 - t2; } + +int os::create_file_for_heap(const char* dir, size_t size) { + VMError::report_and_die("Allocating object heap with backing file is not supported for AIX"); + return false; +} + +bool os::map_memory_to_file(char* base, size_t size, int file_desc) { + VMError::report_and_die("Allocating object heap with backing file is not supported for AIX"); + return false; +}