mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
38 lines
636 B
C++
38 lines
636 B
C++
#pragma once
|
|
|
|
#include <mutex>
|
|
#include <thread>
|
|
|
|
#include "common.hpp"
|
|
#include "utils/mixins.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
using namespace std::chrono_literals;
|
|
namespace this_thread = std::this_thread;
|
|
|
|
using std::mutex;
|
|
using std::thread;
|
|
|
|
template <typename T>
|
|
class mutex_wrapper : public T {
|
|
public:
|
|
template <typename... Args>
|
|
explicit mutex_wrapper(Args&&... args) : T(forward<Args>(args)...) {}
|
|
|
|
void lock() const noexcept {
|
|
m_mtx.lock();
|
|
}
|
|
void unlock() const noexcept {
|
|
m_mtx.unlock();
|
|
};
|
|
|
|
private:
|
|
mutable mutex m_mtx;
|
|
};
|
|
|
|
namespace concurrency_util {
|
|
size_t thread_id(const thread::id id);
|
|
}
|
|
|
|
POLYBAR_NS_END
|