MOHAMED
MOHAMED

Reputation: 43518

How to kill child of fork?

I have the following code which create a child fork. And I want to kill the child before it finish its execution in the parent. how to do it?

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int i;

main (int ac, char **av)
{
  int pid;

  i = 1;

  if ((pid = fork()) == 0) {
    /* child */
    while (1) {
      printf ("I m child\n");
      sleep (1);
    }
  }
  else {
    /* Error */
    perror ("fork");
    exit (1);
  }
  sleep (10)

   // TODO here: how to add code to kill child??

}

Upvotes: 21

Views: 87846

Answers (3)

Ed Heal
Ed Heal

Reputation: 59997

See kill system call. Usually a good idea to use SIGTERM first to give the process an opportunity to die gratefully before using SIGKILL.

EDIT

Forgot you need to use waitpid to get the return status of that process and prevent zombie processes.

A FURTHER EDIT

You can use the following code:

kill(pid, SIGTERM);

bool died = false;
for (int loop = 0; !died && loop < 5 /*For example */; ++loop)
{
    int status;
    pid_t id;
    sleep(1);
    if (waitpid(pid, &status, WNOHANG) == pid) died = true;
}

if (!died) kill(pid, SIGKILL);

It will give the process 5 seconds to die gracefully

Upvotes: 17

md5
md5

Reputation: 23699

Send a signal.

#include <sys/types.h>
#include <signal.h>

kill(pid, SIGKILL);

/* or */

kill(pid, SIGTERM);

The second form preferable, among other, if you'll handle signals by yourself.

Upvotes: 13

alk
alk

Reputation: 70931

Issue kill(pid, SIGKILL) from out of the parent.

Upvotes: 5

Related Questions