Skip to content
Snippets Groups Projects
Commit 0c5db831 authored by Mick Jordan's avatar Mick Jordan
Browse files

.fastr.context.eval: dispose of PolyglotEngine when run in calling thread

parent 2bdb8bfc
No related branches found
No related tags found
No related merge requests found
...@@ -192,7 +192,11 @@ public class FastRContext { ...@@ -192,7 +192,11 @@ public class FastRContext {
if (pc == 1) { if (pc == 1) {
ContextInfo info = createContextInfo(contextKind); ContextInfo info = createContextInfo(contextKind);
PolyglotEngine vm = info.createVM(); PolyglotEngine vm = info.createVM();
results[0] = RContext.EvalThread.run(vm, info, RSource.fromTextInternal(exprs.getDataAt(0), RSource.Internal.CONTEXT_EVAL)); try {
results[0] = RContext.EvalThread.run(vm, info, RSource.fromTextInternal(exprs.getDataAt(0), RSource.Internal.CONTEXT_EVAL));
} finally {
vm.dispose();
}
} else { } else {
// separate threads that run in parallel; invoking thread waits for completion // separate threads that run in parallel; invoking thread waits for completion
RContext.EvalThread[] threads = new RContext.EvalThread[pc]; RContext.EvalThread[] threads = new RContext.EvalThread[pc];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment