pub fn fd_allocate(
ctx: FunctionEnvMut<'_, WasiEnv>,
fd: Fd,
offset: Filesize,
len: Filesize,
) -> Result<Errno, WasiError>Expand description
ยงfd_allocate
Allocate extra space for a file descriptor Inputs:
Fd fdThe file descriptor to allocate forFilesize offsetThe offset from the start marking the beginning of the allocationFilesize lenThe length from the offset marking the end of the allocation