mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
rx: shared_cv/shared_mtx disable copying/moving
This commit is contained in:
parent
be56f0745a
commit
fd9bf42538
|
|
@ -46,6 +46,7 @@ protected:
|
|||
|
||||
public:
|
||||
constexpr shared_cv() = default;
|
||||
shared_cv(const shared_cv &) = delete;
|
||||
|
||||
std::errc
|
||||
wait(std::unique_lock<shared_mutex> &lock,
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ class shared_mutex final {
|
|||
|
||||
public:
|
||||
constexpr shared_mutex() = default;
|
||||
shared_mutex(const shared_mutex &) = delete;
|
||||
|
||||
bool try_lock_shared() {
|
||||
// Conditional increment
|
||||
|
|
|
|||
Loading…
Reference in a new issue