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