Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8090d29

Browse filesBrowse files
nodejs-github-botMoLow
authored andcommitted
deps: update uvwasi to 0.0.18
PR-URL: #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>
1 parent 169c8ee commit 8090d29
Copy full SHA for 8090d29

File tree

Expand file treeCollapse file tree

2 files changed

+5
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+5
-1
lines changed
Open diff view settings
Collapse file

‎deps/uvwasi/include/uvwasi.h‎

Copy file name to clipboardExpand all lines: deps/uvwasi/include/uvwasi.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ extern "C" {
1010

1111
#define UVWASI_VERSION_MAJOR 0
1212
#define UVWASI_VERSION_MINOR 0
13-
#define UVWASI_VERSION_PATCH 17
13+
#define UVWASI_VERSION_PATCH 18
1414
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
1515
(UVWASI_VERSION_MINOR << 8) | \
1616
(UVWASI_VERSION_PATCH))
Collapse file

‎deps/uvwasi/src/uv_mapping.c‎

Copy file name to clipboardExpand all lines: deps/uvwasi/src/uv_mapping.c
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
2525
#endif
2626

27+
#if !defined(S_ISFIFO) && defined(S_IFMT) && defined(S_IFIFO)
28+
# define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
29+
#endif
30+
2731

2832
uvwasi_errno_t uvwasi__translate_uv_error(int err) {
2933
switch (err) {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.