< prev index next >

src/os/aix/vm/os_aix.cpp

Print this page

        

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