hotspot/src/os/linux/vm/hpi_linux.hpp
changeset 768 d0bebc7eefc2
parent 1 489c9b5090e2
child 5547 f4b087cbb361
--- a/hotspot/src/os/linux/vm/hpi_linux.hpp	Tue Jun 24 10:43:29 2008 -0700
+++ b/hotspot/src/os/linux/vm/hpi_linux.hpp	Tue Jun 24 16:00:14 2008 -0700
@@ -70,6 +70,10 @@
   RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, (unsigned int) flags));
 }
 
+inline int hpi::raw_send(int fd, char *buf, int nBytes, int flags) {
+  return send(fd, buf, nBytes, flags);
+}
+
 inline int hpi::timeout(int fd, long timeout) {
   julong prevtime,newtime;
   struct timeval t;