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/09/10 05:07:22 UTC

svn commit: r1382629 - /incubator/mesos/trunk/third_party/libprocess/src/latch.cpp

Author: benh
Date: Mon Sep 10 03:07:22 2012
New Revision: 1382629

URL: http://svn.apache.org/viewvc?rev=1382629&view=rev
Log:
Added another explicit disambiguation of process::wait.

Modified:
    incubator/mesos/trunk/third_party/libprocess/src/latch.cpp

Modified: incubator/mesos/trunk/third_party/libprocess/src/latch.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/third_party/libprocess/src/latch.cpp?rev=1382629&r1=1382628&r2=1382629&view=diff
==============================================================================
--- incubator/mesos/trunk/third_party/libprocess/src/latch.cpp (original)
+++ incubator/mesos/trunk/third_party/libprocess/src/latch.cpp Mon Sep 10 03:07:22 2012
@@ -42,7 +42,7 @@ void Latch::trigger()
 bool Latch::await(const Duration& duration)
 {
   if (!triggered) {
-    return wait(pid, duration);
+    return process::wait(pid, duration); // Explict to disambiguate.
   }
 
   return true;