Send the child SIGSTOPs and SIGCONTs

This commit is contained in:
Axel Wagner
2010-08-25 18:31:03 +02:00
parent 3c1a6384ab
commit a83e7699e7
3 changed files with 36 additions and 1 deletions

View File

@ -26,4 +26,16 @@ void start_child(char *command);
*/
void kill_child();
/*
* Sends a SIGSTOP to the child-process (if existent)
*
*/
void stop_child();
/*
* Sends a SIGCONT to the child-process (if existent)
*
*/
void cont_child();
#endif