Re: RFR: 8299915: Remove ArrayAllocatorMallocLimit and associated code [v8]

2023-01-13 Thread Justin King
On Fri, 13 Jan 2023 17:39:41 GMT, Justin King wrote: >> Remove abstraction that is a holdover from Solaris. Direct usages of >> `MmapArrayAllocator` have been switched to normal `malloc`. The >> justification is that none of the code paths are called from signal >> handlers, so using `mmap` di

Re: RFR: 8299915: Remove ArrayAllocatorMallocLimit and associated code [v8]

2023-01-13 Thread Justin King
> Remove abstraction that is a holdover from Solaris. Direct usages of > `MmapArrayAllocator` have been switched to normal `malloc`. The justification > is that none of the code paths are called from signal handlers, so using > `mmap` directly does not make sense and is potentially slower than g