Aleksey Shipilëv

Results 219 comments of Aleksey Shipilëv

Thanks! I think I am going to wait for JDK 25 enhancement request to be approved first.

> Thanks! I think I am going to wait for JDK 25 enhancement request to be approved first. Still waiting... Do I need to ask someone directly to review it?

JDK 25 enhancement request granted. I am integrating this to mainline, and would follow with JDK 25 backport. /integrate

I would highly suspect the GC behavior with only `-Xmx` set is different between G1 and Parallel. I think you need to study the GC logs when running with Parallel...

/approval request Same reason as for other update releases.

Oh, this is not a clean backport because of the contextual differences? Need a quick review as well, please and thank you!

Thank you! Integrating now. /integrate

Here is how I understand current code: ``` class Stable { T val; T get() { return val; } void set(T v) { CAS(&val, null, v); } } ``` Am...

Important bit: Hotspot tests are running with fastdebug in GHA (job: `hs/tier1 common`), so the tests still run as PR check.