We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad438df commit c36f5c6Copy full SHA for c36f5c6
src/library.js
@@ -171,7 +171,7 @@ LibraryManager.library = {
171
// pid_t fork(void);
172
// http://pubs.opengroup.org/onlinepubs/000095399/functions/fork.html
173
// We don't support multiple processes.
174
- setErrNo({{{ cDefine('EAGAIN') }}});
+ setErrNo({{{ cDefine('ENOSYS') }}});
175
return -1;
176
},
177
vfork: 'fork',
@@ -411,7 +411,7 @@ LibraryManager.library = {
411
// http://pubs.opengroup.org/onlinepubs/000095399/functions/system.html
412
// Can't call external programs.
413
if (!command) return 0; // no shell available
414
415
416
417
0 commit comments