RFR: 8349206: j.u.l.Handler classes create deadlock risk via synchronized publish() method [v4]
Daniel Fuchs
dfuchs at openjdk.org
Fri Feb 21 10:43:56 UTC 2025
On Thu, 20 Feb 2025 17:38:21 GMT, David Beaumont <duke at openjdk.org> wrote:
>> 8349206: j.u.l.Handler classes create deadlock risk via synchronized publish() method.
>>
>> 1. Remove synchronization of calls to publish() in Handlers in java.util.logging package.
>> 2. Add explanatory comments to various affected methods.
>> 3. Add a test to ensure deadlocks no longer occur.
>>
>> Note that this change does not address issue in MemoryHandler (see JDK-8349208).
>
> David Beaumont has updated the pull request incrementally with one additional commit since the last revision:
>
> Updating code and tests according to feedback and discussions.
src/java.logging/share/classes/java/util/logging/FileHandler.java line 747:
> 745:
> 746: @Override
> 747: void synchronousPostWriteHook() {
I would add:
assert Thread.holdsLock(this);
here
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/23491#discussion_r1965264917
More information about the core-libs-dev
mailing list