On Tue, 3 Jun 2025 12:56:49 GMT, Alan Bateman <al...@openjdk.org> wrote:

> If several threads attempt to read from a Socket's input stream at the same 
> time then all but the winner will block trying to acquire the read lock.  
> This is okay for untimed-reads but surprising for timed-reads as the timeout 
> is only effective after acquiring the lock. The SocketImpl is changed so that 
> the timeout applies to the total time waiting to acquire and read.
> 
> A new test is added to the existing java/net/Socket/Timeouts test. It is 
> migrated from TestNG to a JUnit test as a drive-by change - it's mostly 
> mechanical and the changes kept as minimal as possible.

This pull request has now been integrated.

Changeset: 7838321b
Author:    Alan Bateman <al...@openjdk.org>
URL:       
https://git.openjdk.org/jdk/commit/7838321b74276e45b92c54904ea31ef70ed9e33f
Stats:     174 lines in 2 files changed: 68 ins; 11 del; 95 mod

8358496: Concurrent reading from Socket with timeout executes sequentially

Reviewed-by: dfuchs

-------------

PR: https://git.openjdk.org/jdk/pull/25614

Reply via email to