1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/*****************************************************************************
*
* Original Author: Fredrik Hbinette <hubbe@hubbe.net>
*
* Current Authors: Louis Bavoil <bavoil@cs.utah.edu>
* Peter Leese <hubbe@hubbe.net>
*
* This code is based on and is a branch of plugger written
* by Fredrik Hbinette <hubbe@hubbe.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*
*****************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <stdarg.h>
#include <sys/wait.h>
#include "mozplugger.h"
#include "debug.h"
/*****************************************************************************/
/**
* @brief Wrapper for kill
*
* Adaptive kill(), keep calling kill with higher and higher signal level,
*
* NOTE: kill return zero on successfully sending the signal so the code
* only exits the nested ifs when kill no longer can send the signal!
*
* @param[in] pid The process ID of process to kill
*
*****************************************************************************/
void my_kill(pid_t pid)
{
int status;
D("Killing PID %d with SIGTERM\n", pid);
if (!kill(pid, SIGTERM)) /* '!kill' == true if signal sent! */
{
usleep(KILL_TIMEOUT_USEC);
D("Killing PID %d with SIGTERM\n", pid);
if (!kill(pid, SIGTERM))
{
usleep(KILL_TIMEOUT_USEC);
D("Killing PID %d with SIGTERM\n", pid);
if (!kill(pid, SIGTERM))
{
D("Killing PID %d with SIGKILL\n", pid);
kill(pid, SIGKILL);
}
}
}
D("Waiting for sons\n");
while (waitpid(-1, &status, WNOHANG) > 0);
}
|