< prev index next >

src/os/solaris/vm/os_solaris.cpp

Print this page

        

@@ -5846,5 +5846,15 @@
     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 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;
+}
< prev index next >