[jdk17u-dev] RFR: 8292989: Avoid dynamic memory in AsyncLogWriter
Xin Liu
xliu at openjdk.org
Fri Jul 28 08:25:05 UTC 2023
This patch is *NOT* a clean backport. The logic part is exactly the same, but I have to adjust code in the following parts:
1. change from KVHashtable to ResourceHashtable because we want to use resourceArea instead of C_HEAP.
2. we added lambda-API iterator() to ResourceHashtable. Instead of backporting all patches from TIP, we just reuse the original iterator().
template<typename Function>
void iterate(Function function) const { // lambda enabled API
Testing:
jdk-test1 tests including gtest.
Manually check there's no malloc/free in runtime.
-------------
Commit messages:
- Backport bf79f99c0c61fc36b80cd8550e5c70e158338ef4
Changes: https://git.openjdk.org/jdk17u-dev/pull/1630/files
Webrev: https://webrevs.openjdk.org/?repo=jdk17u-dev&pr=1630&range=00
Issue: https://bugs.openjdk.org/browse/JDK-8292989
Stats: 510 lines in 6 files changed: 274 ins; 193 del; 43 mod
Patch: https://git.openjdk.org/jdk17u-dev/pull/1630.diff
Fetch: git fetch https://git.openjdk.org/jdk17u-dev.git pull/1630/head:pull/1630
PR: https://git.openjdk.org/jdk17u-dev/pull/1630
More information about the jdk-updates-dev
mailing list