You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ti...@apache.org on 2016/02/23 16:08:56 UTC

mesos git commit: Fixed invalid usage of ATOMIC_FLAG_INIT in libprocess.

Repository: mesos
Updated Branches:
  refs/heads/master 3070d5c34 -> fd1101db8


Fixed invalid usage of ATOMIC_FLAG_INIT in libprocess.

Review: https://reviews.apache.org/r/43859/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/fd1101db
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/fd1101db
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/fd1101db

Branch: refs/heads/master
Commit: fd1101db8af8f3ea684a09e2f1d79f5fa9b69496
Parents: 3070d5c
Author: Yong Tang <yo...@outlook.com>
Authored: Tue Feb 23 10:47:15 2016 +0100
Committer: Till Toenshoff <to...@me.com>
Committed: Tue Feb 23 16:08:29 2016 +0100

----------------------------------------------------------------------
 3rdparty/libprocess/src/libevent_ssl_socket.cpp | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/fd1101db/3rdparty/libprocess/src/libevent_ssl_socket.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/libevent_ssl_socket.cpp b/3rdparty/libprocess/src/libevent_ssl_socket.cpp
index 5a987ea..b829e7d 100644
--- a/3rdparty/libprocess/src/libevent_ssl_socket.cpp
+++ b/3rdparty/libprocess/src/libevent_ssl_socket.cpp
@@ -444,7 +444,6 @@ LibeventSSLSocketImpl::LibeventSSLSocketImpl(int _s)
   : Socket::Impl(_s),
     bev(NULL),
     listener(NULL),
-    lock(ATOMIC_FLAG_INIT),
     recv_request(NULL),
     send_request(NULL),
     connect_request(NULL),
@@ -459,7 +458,6 @@ LibeventSSLSocketImpl::LibeventSSLSocketImpl(
   : Socket::Impl(_s),
     bev(_bev),
     listener(NULL),
-    lock(ATOMIC_FLAG_INIT),
     recv_request(NULL),
     send_request(NULL),
     connect_request(NULL),