File: sync-helpers.cpp

package info (click to toggle)
obs-advanced-scene-switcher 1.32.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,492 kB
  • sloc: xml: 297,593; cpp: 147,875; python: 387; sh: 280; ansic: 170; makefile: 33
file content (55 lines) | stat: -rw-r--r-- 963 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include "sync-helpers.hpp"

namespace advss {

std::mutex *GetSwitcherMutex();
std::unique_lock<std::mutex> *GetSwitcherLoopLock();

std::mutex *GetMutex()
{
	return GetSwitcherMutex();
}

std::lock_guard<std::mutex> LockContext()
{
	return std::lock_guard<std::mutex>(*GetSwitcherMutex());
}

std::unique_lock<std::mutex> *GetLoopLock()
{
	return GetSwitcherLoopLock();
}

PerInstanceMutex::PerInstanceMutex() {}

PerInstanceMutex::~PerInstanceMutex(){};

PerInstanceMutex::PerInstanceMutex(const PerInstanceMutex &) {}

PerInstanceMutex &PerInstanceMutex::operator=(const PerInstanceMutex &)
{
	return *this;
}

PerInstanceMutex::operator std::mutex &()
{
	return _mtx;
}

PerInstanceMutex::operator const std::mutex &() const
{
	return _mtx;
}

std::lock_guard<std::mutex> Lockable::Lock()
{
	return std::lock_guard<std::mutex>(_mtx);
}

void Lockable::WithLock(const std::function<void()> &func)
{
	const auto lock = Lock();
	func();
}

} // namespace advss