2003-06-18 09:56:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file kill.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
2003-07-28 22:37:28 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-06-18 09:56:10 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-06-18 09:56:10 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2000-01-17 21:01:30 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2004-11-07 13:22:51 +00:00
|
|
|
|
#include "support/lyxlib.h"
|
2000-01-17 21:01:30 +00:00
|
|
|
|
|
2002-06-10 17:31:57 +00:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <csignal>
|
2002-06-10 07:57:39 +00:00
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
|
int lyx::support::kill(int pid, int sig)
|
2000-01-17 21:01:30 +00:00
|
|
|
|
{
|
|
|
|
|
return ::kill(pid, sig);
|
|
|
|
|
}
|