Skip to content

Commit 8813dca

Browse files
dmabuptcjihrig
authored andcommitted
ibmi: return 0 from uv_resident_set_memory()
PR-URL: #1939 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
1 parent abe9e01 commit 8813dca

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/unix/ibmi.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ void uv_loadavg(double avg[3]) {
7272

7373

7474
int uv_resident_set_memory(size_t* rss) {
75-
return UV_ENOSYS;
75+
*rss = 0;
76+
return 0;
7677
}
7778

7879

0 commit comments

Comments
 (0)