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/11/04 02:28:50 UTC

svn commit: r1405449 - /incubator/mesos/branches/0.10.0/third_party/libprocess/include/process/process.hpp

Author: benh
Date: Sun Nov  4 01:28:49 2012
New Revision: 1405449

URL: http://svn.apache.org/viewvc?rev=1405449&view=rev
Log:
*** MODIFIED FOR 0.10.0 ***
Explicit disambiguation of process::wait.

Modified:
    incubator/mesos/branches/0.10.0/third_party/libprocess/include/process/process.hpp

Modified: incubator/mesos/branches/0.10.0/third_party/libprocess/include/process/process.hpp
URL: http://svn.apache.org/viewvc/incubator/mesos/branches/0.10.0/third_party/libprocess/include/process/process.hpp?rev=1405449&r1=1405448&r2=1405449&view=diff
==============================================================================
--- incubator/mesos/branches/0.10.0/third_party/libprocess/include/process/process.hpp (original)
+++ incubator/mesos/branches/0.10.0/third_party/libprocess/include/process/process.hpp Sun Nov  4 01:28:49 2012
@@ -331,13 +331,13 @@ inline void terminate(const ProcessBase*
 
 inline bool wait(const ProcessBase& process, double secs)
 {
-  return wait(process.self(), secs);
+  return process::wait(process.self(), secs); // Explicit to disambiguate.
 }
 
 
 inline bool wait(const ProcessBase* process, double secs)
 {
-  return wait(process->self(), secs);
+  return process::wait(process->self(), secs); // Explicit to disambiguate.
 }