Skip to content

Commit

Permalink
ibmi: return 0 from uv_resident_set_memory()
Browse files Browse the repository at this point in the history
PR-URL: #1939
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
  • Loading branch information
dmabupt authored and cjihrig committed Sep 18, 2018
1 parent abe9e01 commit 8813dca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/unix/ibmi.c
Expand Up @@ -72,7 +72,8 @@ void uv_loadavg(double avg[3]) {


int uv_resident_set_memory(size_t* rss) {
return UV_ENOSYS;
*rss = 0;
return 0;
}


Expand Down

0 comments on commit 8813dca

Please sign in to comment.