HPaulS

Results 4 comments of HPaulS

Just to talk about Windows for a minute, `execve` is supported there (actually, MS recommend `_execve`, but that's just a detail) and is functionally equivalent to the POSIX `execve`. It...

Process B starts, process A immediately quits, same difference. It's the best you can do on Windows. Simulating 'it' would be hard. I would avoid it unless there is some...

To me, the only important question here is whether the spawned process has to have the same process ID as the parent process. Does it? Everything else is easily doable...

OK, thanks. I myself had to check that. So I saw this: https://nodejs.org/api/child_process.html#child_process_child_process_exec_command_options_callback But we seem to need another version that never returns, implementation details at the discretion of the...