I am trying to create a child process and then send SIGINT to the child without terminating the parent. I tried this:
pid=fork();
if (!pid)
{
setpgrp();
cout<<"waiting...\n";
while(1);
}
else
{
cout<<"parent";
wait(NULL);
}
but when I hit C-c both process were terminated
while(1);usewhile(1) sleep(1);Much easier on the CPU. – wallyk Nov 19 '09 at 6:00while(e);do insteadwhile(e) continue;, but in this case what wallyk said. – DigitalRoss Nov 19 '09 at 6:04