*** empty log message ***

master
Marc Wäckerlin 19 years ago
parent bda2388a08
commit a968ba543e
  1. 7
      mrw/exec.cpp

@ -9,6 +9,9 @@
@license LGPL, see file <a href="license.html">COPYING</a>
$Log$
Revision 1.13 2005/04/20 18:32:14 marc
*** empty log message ***
Revision 1.12 2005/04/20 18:12:55 marc
added kill() for PartialExec
@ -535,12 +538,12 @@ std::pair<std::string, std::string>
//------------------------------------------------------------------------------
mrw::PartialExec& mrw::PartialExec::terminate() throw() {
kill(_pid, SIGTERM);
::kill(_pid, SIGTERM);
return *this;
}
//------------------------------------------------------------------------------
mrw::PartialExec& mrw::PartialExec::kill() throw() {
kill(_pid, SIGKILL);
::kill(_pid, SIGKILL);
return *this;
}

Loading…
Cancel
Save