Change the injection count of fuel in a store from u32 to u64 (#3048)

* Change the injection count of fuel in a store from u32 to u64

This commit updates the type of the amount of times to inject fuel in
the `out_of_fuel_async_yield` to `u64` instead of `u32`. This should
allow effectively infinite fuel to get injected, even if a small amount
of fuel is injected per iteration.

Closes #2927
Closes #3046

* Fix tokio example
This commit is contained in:
Alex Crichton
2021-07-01 10:46:21 -05:00
committed by GitHub
parent 7453bd5f0d
commit b9985fe2e5
4 changed files with 8 additions and 8 deletions

View File

@@ -95,8 +95,8 @@ async fn run_wasm(inputs: Inputs) -> Result<(), Error> {
let mut store = Store::new(&inputs.env.engine, wasi);
// WebAssembly execution will be paused for an async yield every time it
// consumes 10000 fuel. Fuel will be refilled u32::MAX times.
store.out_of_fuel_async_yield(u32::MAX, 10000);
// consumes 10000 fuel. Fuel will be refilled u64::MAX times.
store.out_of_fuel_async_yield(u64::MAX, 10000);
// Instantiate into our own unique store using the shared linker, afterwards
// acquiring the `_start` function for the module and executing it.