< prev index next >

src/hotspot/os/posix/os_posix.cpp

Print this page

        

*** 1332,1341 **** --- 1332,1348 ---- } 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 >