wasm-micro-runtime/core/iwasm
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
..
aot Implement module instance context APIs (#2436) 2023-09-07 14:54:11 +08:00
common Handle a return from wasi _start function correctly (#2529) 2023-09-08 11:49:04 +08:00
compilation Fix a typo in is_win_platform (#2490) 2023-08-22 11:50:11 +08:00
doc Add architecture diagram for wasm globals and classic-interp stack frame (#2058) 2023-03-25 09:39:20 +08:00
fast-jit Fix some check issues on table operations (#2392) 2023-07-27 21:53:48 +08:00
include Implement module instance context APIs (#2436) 2023-09-07 14:54:11 +08:00
interpreter Implement module instance context APIs (#2436) 2023-09-07 14:54:11 +08:00
libraries fd_object_release: Preserve errno (#2535) 2023-09-08 12:26:32 +08:00
README.md Add architecture diagram for wasm globals and classic-interp stack frame (#2058) 2023-03-25 09:39:20 +08:00