You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2012/04/25 20:15:58 UTC

svn commit: r1330461 - /incubator/mesos/trunk/third_party/libprocess/include/process/executor.hpp

Author: benh
Date: Wed Apr 25 18:15:57 2012
New Revision: 1330461

URL: http://svn.apache.org/viewvc?rev=1330461&view=rev
Log:
Fixed return type of process::Executor::stop (contributed by Charles Reiss).

Modified:
    incubator/mesos/trunk/third_party/libprocess/include/process/executor.hpp

Modified: incubator/mesos/trunk/third_party/libprocess/include/process/executor.hpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/third_party/libprocess/include/process/executor.hpp?rev=1330461&r1=1330460&r2=1330461&view=diff
==============================================================================
--- incubator/mesos/trunk/third_party/libprocess/include/process/executor.hpp (original)
+++ incubator/mesos/trunk/third_party/libprocess/include/process/executor.hpp Wed Apr 25 18:15:57 2012
@@ -55,7 +55,7 @@ public:
     process::wait(process);
   }
 
-  bool stop()
+  void stop()
   {
     process::terminate(process);