wasm-micro-runtime/core/iwasm/libraries/libc-wasi/sandboxed-system-primitives
YAMAMOTO Takashi f128150d43
fd_object_release: Preserve errno (#2535)
Preserve errno because this function is often used like
the following. The caller wants to report the error from the main
operation (`lseek` in this example), not from fd_object_release.

```
    off_t ret = lseek(fd_number(fo), offset, nwhence);
    fd_object_release(fo);
    if (ret < 0)
        return convert_errno(errno);
```
2023-09-08 12:26:32 +08:00
..
include Unifdef -U WASMTIME_SSP_STATIC_CURFDS (#2533) 2023-09-06 15:25:58 +08:00
src fd_object_release: Preserve errno (#2535) 2023-09-08 12:26:32 +08:00
LICENSE Enable AoT and wamr-sdk, and change arguments of call wasm API (#157) 2020-01-21 13:26:14 +08:00