We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1de1298 + 1175c64 commit c484c14Copy full SHA for c484c14
src/library.js
@@ -242,6 +242,8 @@ LibraryManager.library = {
242
execv: 'execl',
243
execve: 'execl',
244
execvp: 'execl',
245
+ __execvpe: 'execl',
246
+ fexecve: 'execl',
247
248
_exit: function(status) {
249
// void _exit(int status);
@@ -258,6 +260,8 @@ LibraryManager.library = {
258
260
return -1;
259
261
},
262
vfork: 'fork',
263
+ posix_spawn: 'fork',
264
+ posix_spawnp: 'fork',
265
266
setgroups__deps: ['__setErrNo', '$ERRNO_CODES', 'sysconf'],
267
setgroups: function(ngroups, gidset) {
0 commit comments