< prev index next >

src/hotspot/os/posix/os_posix.cpp

Print this page

        

@@ -1332,10 +1332,17 @@
   }
   return result;
 
 }
 
+int os::stat(const char *path, struct stat *sbuf) {
+  return ::stat(path, sbuf);
+}
+
+char * os::native_path(char *path) {
+  return path;
+}
 
 // Check minimum allowable stack sizes for thread creation and to initialize
 // the java system classes, including StackOverflowError - depends on page
 // size.
 // The space needed for frames during startup is platform dependent. It
< prev index next >