mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8234501: remove obsolete NET_ReadV
Reviewed-by: alanb, vtewari
This commit is contained in:
parent
3f517c65c0
commit
20a03807b8
5 changed files with 1 additions and 18 deletions
|
@ -373,10 +373,6 @@ int NET_NonBlockingRead(int s, void* buf, size_t len) {
|
|||
BLOCKING_IO_RETURN_INT( s, recv(s, buf, len, MSG_DONTWAIT) );
|
||||
}
|
||||
|
||||
int NET_ReadV(int s, const struct iovec * vector, int count) {
|
||||
BLOCKING_IO_RETURN_INT( s, readv(s, vector, count) );
|
||||
}
|
||||
|
||||
int NET_RecvFrom(int s, void *buf, int len, unsigned int flags,
|
||||
struct sockaddr *from, socklen_t *fromlen) {
|
||||
BLOCKING_IO_RETURN_INT( s, recvfrom(s, buf, len, flags, from, fromlen) );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue