mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-12 22:05:33 +00:00
Improved WASI path_readlink function signature
This commit is contained in:
parent
d26cee8bba
commit
9c2250dd41
@ -1600,16 +1600,17 @@ pub fn path_open(
|
||||
|
||||
pub fn path_readlink(
|
||||
ctx: &mut Ctx,
|
||||
fd: __wasi_fd_t,
|
||||
dir_fd: __wasi_fd_t,
|
||||
path: WasmPtr<u8, Array>,
|
||||
path_len: u32,
|
||||
buf: WasmPtr<u8>,
|
||||
buf: WasmPtr<u8, Array>,
|
||||
buf_len: u32,
|
||||
bufused: WasmPtr<u32>,
|
||||
buf_used: WasmPtr<u32>,
|
||||
) -> __wasi_errno_t {
|
||||
debug!("wasi::path_readlink");
|
||||
unimplemented!("wasi::path_readlink")
|
||||
}
|
||||
|
||||
pub fn path_remove_directory(
|
||||
ctx: &mut Ctx,
|
||||
fd: __wasi_fd_t,
|
||||
|
Loading…
Reference in New Issue
Block a user