use of com.oracle.svm.truffle.nfi.NativeAPI.NativeTruffleContext in project graal by oracle.
the class Target_com_oracle_truffle_nfi_impl_NFIContext method disposeNativeContext.
@Substitute
private static void disposeNativeContext(long context) {
TruffleNFISupport support = ImageSingletons.lookup(TruffleNFISupport.class);
NativeTruffleContext ctx = WordFactory.pointer(context);
support.destroyContextHandle(ctx.contextHandle());
UnmanagedMemory.free(ctx);
}
Aggregations