Repository: mesos Updated Branches: refs/heads/master bdf2ea144 -> c8700f981
Fix ATOMIC_FLAG_INIT typo. Review: https://reviews.apache.org/r/35908 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/fa13557b Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/fa13557b Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/fa13557b Branch: refs/heads/master Commit: fa13557ba3ad741e789c9dab74c5ba1019a26939 Parents: bdf2ea1 Author: Joris Van Remoortere <[email protected]> Authored: Thu Jun 25 21:04:57 2015 -0700 Committer: Benjamin Hindman <[email protected]> Committed: Thu Jun 25 21:04:57 2015 -0700 ---------------------------------------------------------------------- 3rdparty/libprocess/src/libevent_ssl_socket.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/fa13557b/3rdparty/libprocess/src/libevent_ssl_socket.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/src/libevent_ssl_socket.hpp b/3rdparty/libprocess/src/libevent_ssl_socket.hpp index e94e6d5..4f2cd35 100644 --- a/3rdparty/libprocess/src/libevent_ssl_socket.hpp +++ b/3rdparty/libprocess/src/libevent_ssl_socket.hpp @@ -118,7 +118,7 @@ private: evconnlistener* listener; // Protects the following instance variables. - std::atomic_flag lock = ATOMIC_LOCK_INIT; + std::atomic_flag lock = ATOMIC_FLAG_INIT; Owned<RecvRequest> recv_request; Owned<SendRequest> send_request; Owned<ConnectRequest> connect_request;
