mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
deps: update uvwasi to 0.0.18
PR-URL: https://github.com/nodejs/node/pull/47866 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
parent
c1d496a662
commit
9772065231
2
deps/uvwasi/include/uvwasi.h
vendored
2
deps/uvwasi/include/uvwasi.h
vendored
@ -10,7 +10,7 @@ extern "C" {
|
||||
|
||||
#define UVWASI_VERSION_MAJOR 0
|
||||
#define UVWASI_VERSION_MINOR 0
|
||||
#define UVWASI_VERSION_PATCH 17
|
||||
#define UVWASI_VERSION_PATCH 18
|
||||
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
|
||||
(UVWASI_VERSION_MINOR << 8) | \
|
||||
(UVWASI_VERSION_PATCH))
|
||||
|
4
deps/uvwasi/src/uv_mapping.c
vendored
4
deps/uvwasi/src/uv_mapping.c
vendored
@ -24,6 +24,10 @@
|
||||
# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
|
||||
#endif
|
||||
|
||||
#if !defined(S_ISFIFO) && defined(S_IFMT) && defined(S_IFIFO)
|
||||
# define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
|
||||
#endif
|
||||
|
||||
|
||||
uvwasi_errno_t uvwasi__translate_uv_error(int err) {
|
||||
switch (err) {
|
||||
|
Loading…
Reference in New Issue
Block a user