1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-14 09:23:53 +01:00
dxvk/src/util/sync/sync_ticketlock.h
2018-11-13 17:05:06 +01:00

40 lines
684 B
C++

#pragma once
#include <atomic>
#include "../thread.h"
namespace dxvk::sync {
/**
* \brief Ticket spinlock
*
* A fair spinlock implementation that should
* be preferred over \ref Spinlock when one of
* the threads accessing the lock is likely to
* starve another.
*/
class TicketLock {
public:
void lock() {
uint32_t ticket = m_counter.fetch_add(1);
while (m_serving.load(std::memory_order_acquire) != ticket)
continue;
}
void unlock() {
m_serving.fetch_add(1, std::memory_order_release);
}
private:
std::atomic<uint32_t> m_counter = { 0 };
std::atomic<uint32_t> m_serving = { 0 };
};
}