comparison src/os/windows/vm/hpi_windows.hpp @ 222:2a1a77d3458f

6718676: putback for 6604014 is incomplete Reviewed-by: kvn, jrose
author never
date Tue, 24 Jun 2008 16:00:14 -0700
parents a61af66fc99e
children c18cbe5936b8
comparison
equal deleted inserted replaced
221:1e026f8da827 222:2a1a77d3458f
100 (int fd, char *buf, int nBytes, int flags), 100 (int fd, char *buf, int nBytes, int flags),
101 ("fd = %d, buf = %p, nBytes = %d, flags = %d", 101 ("fd = %d, buf = %p, nBytes = %d, flags = %d",
102 fd, buf, nBytes, flags), 102 fd, buf, nBytes, flags),
103 (fd, buf, nBytes, flags)); 103 (fd, buf, nBytes, flags));
104 104
105 inline int hpi::raw_send(int fd, char *buf, int nBytes, int flags) {
106 return send(fd, buf, nBytes, flags);
107 }
108
105 HPIDECL(timeout, "timeout", _socket, Timeout, int, "%d", 109 HPIDECL(timeout, "timeout", _socket, Timeout, int, "%d",
106 (int fd, long timeout), 110 (int fd, long timeout),
107 ("fd = %d, timeout = %ld", fd, timeout), 111 ("fd = %d, timeout = %ld", fd, timeout),
108 (fd, timeout)); 112 (fd, timeout));
109 113