src/java.base/windows/native/libnio/ch/SocketDispatcher.c
changeset 48255 971d83666b23
parent 47216 71c04702a3d5
child 48767 0c6ce8fdb50a
equal deleted inserted replaced
48254:111104f1e033 48255:971d83666b23
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   177                JNU_ThrowIOExceptionWithLastError(env, "Write failed");
   177                JNU_ThrowIOExceptionWithLastError(env, "Write failed");
   178                return IOS_THROWN;
   178                return IOS_THROWN;
   179             }
   179             }
   180         }
   180         }
   181 
   181 
   182         count += written;
   182         count += (jint)written;
   183         address += written;
   183         address += written;
   184 
   184 
   185     } while ((count < total) && (written == MAX_BUFFER_SIZE));
   185     } while ((count < total) && (written == MAX_BUFFER_SIZE));
   186 
   186 
   187     return count;
   187     return count;