mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-15 15:16:49 +02:00
trunk: sync from 1.4.3
make & cmake fixes
This commit is contained in:
@@ -125,9 +125,15 @@ ProcessHandleImpl* ProcessImpl::launchImpl(const std::string& command, const Arg
|
||||
}
|
||||
|
||||
|
||||
void ProcessImpl::killImpl(const ProcessHandleImpl& handle)
|
||||
{
|
||||
killImpl(handle.id());
|
||||
}
|
||||
|
||||
|
||||
void ProcessImpl::killImpl(PIDImpl pid)
|
||||
{
|
||||
if (kill(pid, SIGKILL) != 0)
|
||||
if (kill(pid, SIGKILL) != 0)
|
||||
{
|
||||
switch (errno)
|
||||
{
|
||||
|
Reference in New Issue
Block a user