mirror of https://github.com/WebAssembly/wasi-libc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Henri Nurmi
1b19fc65ad
|
2 months ago | |
---|---|---|
.. | ||
clocks | 4 months ago | |
cloudlibc | 7 months ago | |
crt | 8 months ago | |
getpid | 4 years ago | |
headers | 2 months ago | |
mman | 6 months ago | |
signal | 1 year ago | |
sources | 2 months ago | |
README.md | 4 years ago |
README.md
WASI libc "bottom half".
The WASI libc "bottom half" is conceptually the lower half of a traditional libc implementation, consisting of C interfaces to the low-level WASI syscalls.
This implementation is partially derived from the "bottom half" of cloudlibc, revision 8835639f27fc42d32096d59d294a0bbb857dc368.
This implementation includes preopen functionality, which emulates POSIX APIs
accepting absolute paths by translating them into pre-opened directory handles
and relative paths that can be opened with openat
. This technique is inspired
by libpreopen, however the implementation here is designed to be built into
libc rather than to be a layer on top of libc.
The WASI libc lower half currently depends on the dlmalloc component.