デーモンプロセスとしてファイルを実行しています。デーモンを停止するにはどうすればよいですか?
int main(int argc, char **argv)
{
if ( argc != 5 )
{
printf ("Usage: %s <server> <nick> <channel> <logging>\n", argv[0]);
return 1;
}
char *startPath = malloc(sizeof(char) *100);
strcpy(startPath,"/home/.../start");
int child_pnr;
if(daemonisieren() != 0)
{
printf("damonization not possible");
exit(0);
}
printf("I am a damon \n");
if((child_pnr = fork())==0)
{
execve(startPath,argv);
}
else if (child_pnr > 0)
{
printf("I am parent and have a child \n");
wait(child_pnr);
}
printf("gone....\n");
free(startPath);
}
私はkill(childnr)と同じようにそれを殺すことができると思いますが、親プロセスは子が実行を終了するのを待つので、彼は決してそうしないかもしれません。どうやってやるの?