2017-11-15 21:18:45 +00:00
|
|
|
// Copyright (c) 2015 Jeff Preshing
|
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgement in the product documentation would be
|
|
|
|
// appreciated but is not required.
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
// misrepresented as being the original software.
|
|
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
2017-11-15 20:40:46 +00:00
|
|
|
|
2017-11-15 20:42:55 +00:00
|
|
|
#ifndef __TRACY_CPP11OM_BENAPHORE_H__
|
|
|
|
#define __TRACY_CPP11OM_BENAPHORE_H__
|
2017-11-15 20:40:46 +00:00
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <thread>
|
|
|
|
#include <atomic>
|
2017-11-15 20:42:55 +00:00
|
|
|
#include "tracy_sema.h"
|
2017-11-15 20:40:46 +00:00
|
|
|
|
2017-11-15 20:42:55 +00:00
|
|
|
namespace tracy
|
|
|
|
{
|
2017-11-15 20:40:46 +00:00
|
|
|
|
|
|
|
class NonRecursiveBenaphore
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::atomic<int> m_contentionCount;
|
|
|
|
DefaultSemaphoreType m_sema;
|
|
|
|
|
|
|
|
public:
|
|
|
|
NonRecursiveBenaphore() : m_contentionCount(0) {}
|
|
|
|
|
|
|
|
void lock()
|
|
|
|
{
|
|
|
|
if (m_contentionCount.fetch_add(1, std::memory_order_acquire) > 0)
|
|
|
|
{
|
|
|
|
m_sema.wait();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 19:37:55 +00:00
|
|
|
bool try_lock()
|
2017-11-15 20:40:46 +00:00
|
|
|
{
|
|
|
|
if (m_contentionCount.load(std::memory_order_relaxed) != 0)
|
|
|
|
return false;
|
|
|
|
int expected = 0;
|
|
|
|
return m_contentionCount.compare_exchange_strong(expected, 1, std::memory_order_acquire);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unlock()
|
|
|
|
{
|
|
|
|
int oldCount = m_contentionCount.fetch_sub(1, std::memory_order_release);
|
|
|
|
assert(oldCount > 0);
|
|
|
|
if (oldCount > 1)
|
|
|
|
{
|
|
|
|
m_sema.signal();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-11-15 20:42:55 +00:00
|
|
|
}
|
2017-11-15 20:40:46 +00:00
|
|
|
|
|
|
|
#endif // __CPP11OM_BENAPHORE_H__
|