src/hotspot/share/runtime/os.inline.hpp
changeset 53266 57d8566a2732
parent 53244 9807daeb47c4
--- a/src/hotspot/share/runtime/os.inline.hpp	Sun Jan 13 17:33:26 2019 +0100
+++ b/src/hotspot/share/runtime/os.inline.hpp	Sun Jan 13 16:54:01 2019 -0500
@@ -27,6 +27,10 @@
 
 #include "runtime/os.hpp"
 
+inline ssize_t os::read(int fd, void *buf, unsigned int nBytes) {
+  return ::read(fd, buf, nBytes);
+}
+
 #include OS_HEADER_INLINE(os)
 
 #endif // SHARE_RUNTIME_OS_INLINE_HPP