Re: RFR: 8313768: Reduce interaction with volatile field in j.u.l.StreamHandler

2023-08-08 Thread Jaikiran Pai
On Fri, 4 Aug 2023 14:51:35 GMT, Sergey Tsypanov wrote: > In `publish0()`, `flush0()` and `flushAndClose()`methods of `StreamHandler` > we read multiple times from volatile writer. The access number can be reduced > by reading the field into local variable once. The change looks fine to me.

Re: RFR: 8313768: Reduce interaction with volatile field in j.u.l.StreamHandler

2023-08-08 Thread Daniel Fuchs
On Fri, 4 Aug 2023 14:51:35 GMT, Sergey Tsypanov wrote: > In `publish0()`, `flush0()` and `flushAndClose()`methods of `StreamHandler` > we read multiple times from volatile writer. The access number can be reduced > by reading the field into local variable once. LGTM - Marked as

RFR: 8313768: Reduce interaction with volatile field in j.u.l.StreamHandler

2023-08-04 Thread Sergey Tsypanov
In `publish0()`, `flush0()` and `flushAndClose()`methods of `StreamHandler` we read multiple times from volatile writer. The access number can be reduced by reading the field into local variable once. - Commit messages: - 8313768: Reduce interaction with volatile field in j.u.l.Str