2
votes
0answers
62 views

Do spawned child processes count as user time?

I have a Java process that starts a bunch of child processes and interleaves them by executing to "kill -STOP" and "kill -CONT" (following the suggestion given in Suspend a child process spawned by ...
0
votes
1answer
438 views

Killing a child process from within itself in Node.JS

Is there a way to kill make a child process "suicide"? I tried with process.exit(1) but apparently it kills the whole application I'm running. I just want to kill the child process (like when we call ...
2
votes
1answer
200 views

Killing a Windows 16-bit process from a batch file

I have this situation where an old computer with Windows XP is working as a server for a system, and has the possibility to send alarms to me when something goes wrong. However, this server program ...