Timeline for How do I start a process in suspended state under Linux?
Current License: CC BY-SA 4.0
7 events
when toggle format | what | by | license | comment | |
---|---|---|---|---|---|
Jul 11 at 2:28 | comment | added | LB-- | This is not a valid solution because there is still a race condition: the parent process may try to unsuspend the child process before the child process has suspended itself, resulting in the child remaining suspended indefinitely. You also cannot poll for the suspended state of the child since it may need to suspend again later to await some other process waking it, and unsuspending it early could cause problems in that regard. | |
May 14, 2021 at 0:02 | history | edited | MikeyB | CC BY-SA 4.0 |
deleted 1 character in body
|
May 12, 2021 at 10:10 | comment | added | SOFe | This doesn't stop the process. This just stops the wrapper process. The underlying process didn't even get created. | |
Jul 25, 2011 at 2:52 | history | edited | MikeyB | CC BY-SA 3.0 |
Add code example
|
Jul 25, 2011 at 2:46 | comment | added | MikeyB | Great, so since you want to do this from a shell script, use the stub program. | |
Jul 24, 2011 at 23:32 | comment | added | java.is.for.desktop | I was hoping to do this from a shell script... | |
Jul 24, 2011 at 22:32 | history | answered | MikeyB | CC BY-SA 3.0 |