You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
webperl-for/build/emscripten_1.38.10_eagain.p...

21 lines
706 B
Diff

--- emscripten/src/library.js 2018-08-01 18:58:49.428051969 +0200
+++ emsdk/emscripten/1.38.10/src/library.js 2018-08-01 18:58:03.288051969 +0200
@@ -250,7 +250,7 @@
// pid_t fork(void);
// http://pubs.opengroup.org/onlinepubs/000095399/functions/fork.html
// We don't support multiple processes.
- ___setErrNo(ERRNO_CODES.EAGAIN);
+ ___setErrNo(ERRNO_CODES.ENOTSUP);
return -1;
},
vfork: 'fork',
@@ -545,7 +545,7 @@
// int system(const char *command);
// http://pubs.opengroup.org/onlinepubs/000095399/functions/system.html
// Can't call external programs.
- ___setErrNo(ERRNO_CODES.EAGAIN);
+ ___setErrNo(ERRNO_CODES.ENOTSUP);
return -1;
},