hotspot/src/os/windows/vm/hpi_windows.hpp

Print this page
rev 611 : Merge

@@ -1,8 +1,5 @@
-#ifdef USE_PRAGMA_IDENT_HDR
-#pragma ident "@(#)hpi_windows.hpp      1.17 07/05/05 17:04:44 JVM"
-#endif
 /*
  * Copyright 1998-2005 Sun Microsystems, Inc.  All Rights Reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it

@@ -103,10 +100,14 @@
         (int fd, char *buf, int nBytes, int flags),
         ("fd = %d, buf = %p, nBytes = %d, flags = %d",
          fd, buf, nBytes, flags),
         (fd, buf, nBytes, flags));
 
+inline int hpi::raw_send(int fd, char *buf, int nBytes, int flags) {
+  return send(fd, buf, nBytes, flags);
+}
+
 HPIDECL(timeout, "timeout", _socket, Timeout, int, "%d",
         (int fd, long timeout),
         ("fd = %d, timeout = %ld", fd, timeout),
         (fd, timeout));
 

@@ -165,6 +166,5 @@
         struct protoent *, "(struct protoent *)%p",
         (char* name),
         ("name = %p",
          name),
         (name));
-