diff --git a/mrw/exec.cpp b/mrw/exec.cpp
index 93bd403..2ac7dff 100644
--- a/mrw/exec.cpp
+++ b/mrw/exec.cpp
@@ -9,6 +9,9 @@
@license LGPL, see file COPYING
$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
//------------------------------------------------------------------------------
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;
}