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
{{ message }}
This repository was archived by the owner on Mar 8, 2020. It is now read-only.
jni: partially address #113 by avoiding refs as map keys
Original impl used a reference as a key in a native map,
but in JNI object references are neither constant nor unique,
and thus were violating the contract on hashCode for a map key.
This should allow to get rid of global reference in interface lookup,
but there are 2 more (clearly identified) cases where
we still rely on side-effects of having a glabal reference
and thus leak some memory
Signed-off-by: Alexander Bezzubov <[email protected]>
0 commit comments