Skip to content

Commit c484c14

Browse files
committed
Merge pull request #3819 from juj/no_process_spawn
No process spawn
2 parents 1de1298 + 1175c64 commit c484c14

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/library.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,8 @@ LibraryManager.library = {
242242
execv: 'execl',
243243
execve: 'execl',
244244
execvp: 'execl',
245+
__execvpe: 'execl',
246+
fexecve: 'execl',
245247

246248
_exit: function(status) {
247249
// void _exit(int status);
@@ -258,6 +260,8 @@ LibraryManager.library = {
258260
return -1;
259261
},
260262
vfork: 'fork',
263+
posix_spawn: 'fork',
264+
posix_spawnp: 'fork',
261265

262266
setgroups__deps: ['__setErrNo', '$ERRNO_CODES', 'sysconf'],
263267
setgroups: function(ngroups, gidset) {

0 commit comments

Comments
 (0)