src/hotspot/os/bsd/os_bsd.inline.hpp
changeset 58654 562bf1878089
parent 55524 b279ae9843b8
child 58679 9c3209ff7550
equal deleted inserted replaced
58653:71fef5fae9cc 58654:562bf1878089
    64 }
    64 }
    65 
    65 
    66 inline void os::dll_unload(void *lib) {
    66 inline void os::dll_unload(void *lib) {
    67   ::dlclose(lib);
    67   ::dlclose(lib);
    68 }
    68 }
    69 
       
    70 inline const int os::default_file_open_flags() { return 0;}
       
    71 
    69 
    72 inline jlong os::lseek(int fd, jlong offset, int whence) {
    70 inline jlong os::lseek(int fd, jlong offset, int whence) {
    73   return (jlong) ::lseek(fd, offset, whence);
    71   return (jlong) ::lseek(fd, offset, whence);
    74 }
    72 }
    75 
    73