Github user pivotal-jbarrett commented on a diff in the pull request: https://github.com/apache/geode-native/pull/36#discussion_r103352845 --- Diff: src/cppcache/src/LRUList.cpp --- @@ -15,12 +15,18 @@ * limitations under the License. */ #include "LRUList.hpp" -#include "SpinLock.hpp" +#include "util/concurrent/spinlock_mutex.hpp" -using namespace apache::geode::client; +#include <mutex> -#define LOCK_HEAD SpinLockGuard headLockGuard(m_headLock) -#define LOCK_TAIL SpinLockGuard tailLockGuard(m_tailLock) +namespace apache { +namespace geode { +namespace client { + +using util::concurrent::spinlock_mutex; + +//#define LOCK_HEAD SpinLockGuard headLockGuard(m_headLock) +//#define LOCK_TAIL SpinLockGuard tailLockGuard(m_tailLock) --- End diff -- Yes.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---