--- old/src/os/solaris/vm/os_solaris.cpp 2016-12-12 09:51:35.534525873 -0800 +++ new/src/os/solaris/vm/os_solaris.cpp 2016-12-12 09:51:35.454525874 -0800 @@ -5738,3 +5738,13 @@ } return yes; } + +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 Solaris"); + 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 Solaris"); + return false; +}