src/java.base/aix/native/libnet/aix_close.c
changeset 59197 bb3472aa26c8
parent 53741 38b6110d5db2
--- a/src/java.base/aix/native/libnet/aix_close.c	Thu Nov 21 13:50:11 2019 +0530
+++ b/src/java.base/aix/native/libnet/aix_close.c	Wed Nov 20 14:16:29 2019 +0100
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
- * Copyright (c) 2016, 2017, SAP SE and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019, SAP SE and/or its affiliates. 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
@@ -416,10 +416,6 @@
     BLOCKING_IO_RETURN_INT(s, recv(s, buf, len, MSG_NONBLOCK));
 }
 
-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) );