src/hotspot/os/windows/os_windows.inline.hpp
changeset 53266 57d8566a2732
parent 53244 9807daeb47c4
child 53886 e94ed0236046
equal deleted inserted replaced
53265:febc37adfe80 53266:57d8566a2732
    68 }
    68 }
    69 
    69 
    70 inline bool os::numa_has_static_binding()   { return true;   }
    70 inline bool os::numa_has_static_binding()   { return true;   }
    71 inline bool os::numa_has_group_homing()     { return false;  }
    71 inline bool os::numa_has_group_homing()     { return false;  }
    72 
    72 
    73 inline size_t os::read(int fd, void *buf, unsigned int nBytes) {
       
    74   return ::read(fd, buf, nBytes);
       
    75 }
       
    76 
       
    77 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) {
       
    78   return ::read(fd, buf, nBytes);
       
    79 }
       
    80 
       
    81 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
    73 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
    82   return ::write(fd, buf, nBytes);
    74   return ::write(fd, buf, nBytes);
    83 }
    75 }
    84 
    76 
    85 inline int os::close(int fd) {
    77 inline int os::close(int fd) {