< prev index next >

src/java.base/windows/native/libnet/SocketOutputStream.c

Print this page
rev 53271 : 8216981: Per thread IO statistics in JFR

@@ -96,10 +96,11 @@
             break;
         } else {
             while(llen > 0) {
                 int n = send(fd, bufP + loff, llen, 0);
                 if (n > 0) {
+                    JVM_callFileWriteBytes(env, n);
                     llen -= n;
                     loff += n;
                     continue;
                 }
 
< prev index next >