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/12/11 00:59:10 UTC

svn commit: r1419891 - /incubator/mesos/branches/0.10.x/third_party/libprocess/include/process/process.hpp

Author: benh
Date: Mon Dec 10 23:59:09 2012
New Revision: 1419891

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

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

Modified: incubator/mesos/branches/0.10.x/third_party/libprocess/include/process/process.hpp
URL: http://svn.apache.org/viewvc/incubator/mesos/branches/0.10.x/third_party/libprocess/include/process/process.hpp?rev=1419891&r1=1419890&r2=1419891&view=diff
==============================================================================
--- incubator/mesos/branches/0.10.x/third_party/libprocess/include/process/process.hpp (original)
+++ incubator/mesos/branches/0.10.x/third_party/libprocess/include/process/process.hpp Mon Dec 10 23:59:09 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.
 }