Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try to use wasmtime on x86_64 #367

Draft
wants to merge 14 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Merge branch 'master' into wasmtime
tomaka committed Apr 7, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit bdb8e8ccafe08153468ae5b24a74db4b57bce742
39 changes: 33 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/src/scheduler/vm.rs
Original file line number Diff line number Diff line change
@@ -293,7 +293,7 @@ impl<'a, T> Thread<'a, T> {
/// a value of `None`.
/// If, however, you call this function after a previous call to [`run`](Thread::run) that was
/// interrupted by an external function call, then you must pass back the outcome of that call.
pub fn run(mut self, value: Option<wasmi::RuntimeValue>) -> Result<ExecOutcome<'a, T>, RunErr> {
pub fn run(mut self, value: Option<WasmValue>) -> Result<ExecOutcome<'a, T>, RunErr> {
self.0.run(value)
}

You are viewing a condensed version of this merge commit. You can view the full changes here.