You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indicates that the parameter is transient. This means it can be backed by a temporarily allocated native memory block, and after the method call, the native memory can be freed again.
Yet the parameter is an @Out parameter, so it must be read after the method call returns. What am I misunderstanding?
The text was updated successfully, but these errors were encountered:
https://github.com/jnr/jnr-ffi-examples/blob/master/gettimeofday/src/main/java/gettimeofday/Gettimeofday.java#L22
I'm not sure how this is transient?
Yet the parameter is an
@Out
parameter, so it must be read after the method call returns. What am I misunderstanding?The text was updated successfully, but these errors were encountered: