wasm-micro-runtime/core/iwasm/libraries
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
..
debug-engine Update release notes and fix issues reported by Coverity (#1813) 2022-12-20 14:37:07 +08:00
lib-pthread Implement module instance context APIs (#2436) 2023-09-07 14:54:11 +08:00
lib-rats sgx-ra: Disable the building of samples (#2507) 2023-08-28 09:42:16 +08:00
lib-socket Fix wasi-sockets tests (#2389) 2023-07-30 19:34:09 +08:00
lib-wasi-threads Implement module instance context APIs (#2436) 2023-09-07 14:54:11 +08:00
libc-builtin Clear some warnings and enable -Werror for NuttX (#1756) 2022-11-28 09:44:33 +08:00
libc-emcc Expose wasm_runtime_call_indirect (#1969) 2023-02-20 18:56:55 +08:00
libc-uvwasi Update libuv version to v1.46.0 (#2405) 2023-07-31 18:32:20 +08:00
libc-wasi fd_object_release: Preserve errno (#2535) 2023-09-08 12:26:32 +08:00
thread-mgr Implement module instance context APIs (#2436) 2023-09-07 14:54:11 +08:00
wasi-nn wasi-nn: Improve TPU support (#2447) 2023-08-14 20:03:56 +08:00