lyx_mirror/src/support/kill.cpp
Lars Gullik Bjønnes 897436efbb Whitespace cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18550 a592a061-630c-0410-9148-cb99ea01b6c8
2007-05-28 22:27:45 +00:00

54 lines
972 B
C++

/**
* \file kill.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "support/lyxlib.h"
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <csignal>
#ifdef _WIN32
#include "debug.h"
#include "os.h"
#include <windows.h>
#include <cerrno>
#endif //_WIN32
namespace lyx {
int support::kill(int pid, int sig)
{
#ifdef _WIN32
if (pid == (int)GetCurrentProcessId())
return -raise(sig);
HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, TRUE, pid);
if (!hProcess) {
lyxerr << "kill OpenProcess failed!" << std::endl;
return -1;
}
if (!TerminateProcess(hProcess, sig)) {
lyxerr << "kill process failed!" << std::endl;
CloseHandle(hProcess);
return -1;
}
CloseHandle(hProcess);
return 0;
#else
return ::kill(pid, sig);
#endif
}
} // namespace lyx