< prev index next >

src/os/bsd/vm/os_bsd.cpp

Print this page

        

*** 4588,4592 **** --- 4588,4602 ---- os::fork_and_exec(buf); yes = false; } 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 BSD"); + 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 BSD"); + return false; + }
< prev index next >