--- a/src/hotspot/os/windows/os_windows.inline.hpp Sun Jan 13 17:33:26 2019 +0100
+++ b/src/hotspot/os/windows/os_windows.inline.hpp Sun Jan 13 16:54:01 2019 -0500
@@ -70,14 +70,6 @@
inline bool os::numa_has_static_binding() { return true; }
inline bool os::numa_has_group_homing() { return false; }
-inline size_t os::read(int fd, void *buf, unsigned int nBytes) {
- return ::read(fd, buf, nBytes);
-}
-
-inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) {
- return ::read(fd, buf, nBytes);
-}
-
inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
return ::write(fd, buf, nBytes);
}