mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
wasm_interp: code comment about empty implementation of WASI clock functions
This commit is contained in:
parent
74b3d14277
commit
d43129d578
1 changed files with 2 additions and 2 deletions
|
@ -61,8 +61,8 @@ impl<'a> WasiDispatcher<'a> {
|
||||||
}
|
}
|
||||||
"environ_get" => todo!("WASI {}({:?})", function_name, arguments),
|
"environ_get" => todo!("WASI {}({:?})", function_name, arguments),
|
||||||
"environ_sizes_get" => todo!("WASI {}({:?})", function_name, arguments),
|
"environ_sizes_get" => todo!("WASI {}({:?})", function_name, arguments),
|
||||||
"clock_res_get" => success_code,
|
"clock_res_get" => success_code, // this dummy implementation seems to be good enough
|
||||||
"clock_time_get" => success_code,
|
"clock_time_get" => success_code, // this dummy implementation seems to be good enough
|
||||||
"fd_advise" => todo!("WASI {}({:?})", function_name, arguments),
|
"fd_advise" => todo!("WASI {}({:?})", function_name, arguments),
|
||||||
"fd_allocate" => todo!("WASI {}({:?})", function_name, arguments),
|
"fd_allocate" => todo!("WASI {}({:?})", function_name, arguments),
|
||||||
"fd_close" => todo!("WASI {}({:?})", function_name, arguments),
|
"fd_close" => todo!("WASI {}({:?})", function_name, arguments),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue