[foreign-memaccess+abi] RFR: 8263018: Improve API for lifecycle of native resources [v2]

Maurizio Cimadamore mcimadamore at openjdk.java.net
Thu Mar 11 09:43:19 UTC 2021


On Wed, 10 Mar 2021 16:41:40 GMT, Jorn Vernee <jvernee at openjdk.org> wrote:

>> not sure I get the suggestion, but when looking at this my feeling was that this method was just copying some data off to some other segment which is then allocated using the provided allocator. I believe what is missing here is a check that the guy calling read() can in fact do that (e.g. if the valist is confined, is the thread the same?) - but I'm not sure that, other than the check, we need something else?
>
> Yeah, AFAIK the only thing we need to check here is that the caller can actually read the segment. In fact, I don't think we need to create a scope here at all, since we don't return the created scope, we can just use the global scope I think.

I think the right thing to do here is to use the VaList scope, not the global scope. That way, when reading from the va list segment we will be protected from read after close issues (since the slice we created would be backed by the same scope as the va list).

-------------

PR: https://git.openjdk.java.net/panama-foreign/pull/466


More information about the panama-dev mailing list