diff options
author | Simon Menke <simon.menke@gmail.com> | 2019-03-21 14:48:19 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-21 09:48:19 -0400 |
commit | 93793dc45504fcc7927354c7e4f39d6de406e9d4 (patch) | |
tree | 76b17e593142147d67d039704eca0001364cf82c /core/libdeno.rs | |
parent | 94405bb61722142e8c4d90bb5f31038fc9aa5f72 (diff) |
core: Allow terminating an Isolate from another thread (#1982)
Diffstat (limited to 'core/libdeno.rs')
-rwxr-xr-x | core/libdeno.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/libdeno.rs b/core/libdeno.rs index 7b6f07a9b..72003a372 100755 --- a/core/libdeno.rs +++ b/core/libdeno.rs @@ -155,6 +155,7 @@ extern "C" { js_filename: *const c_char, js_source: *const c_char, ); + pub fn deno_terminate_execution(i: *const isolate); // Modules |