python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Child process should not die with parent process
The following scenario:
process_1.bin starts doSomeThing.sh
doSomeThing.sh should kill process_1.bin first but keep running itself and do some other things
I have tried fork, exec, screen, p_threa...
oemer_1907
Votes: 0
Answers: 2
How can i stop and continue an execvp() call?
I wrote a program which stops the time of a child process calling execvp(). The next task is to occasionally stop the child process for a given time and continue it.
pid_t child = fork();
if(child == ...
Lexlein
Votes: 0
Answers: 0
pausing a child process and resuming it from the parent
Got almost no clue how signals work, besides the theory of it. I'm writing a programm that needs for the child process to start, pause, wait for the parent process to send a signal, then the parent pr...
Stratos_22
Votes: 0
Answers: 1
Killing all the processes bash scripts generated using script names
How can I kill all the processes that a shell script has generated? myscript was run several times and created unwanted processes and I want to kill them. I am running an Ubuntu 20.
123 sh /usr/local...
afp_2008
Votes: 0
Answers: 1