projects
/
invirt/third/libt4.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
More clean-ups and cool template stuff
[invirt/third/libt4.git]
/
lock.h
1
#ifndef lock_h
2
#define lock_h
3
4
#include <thread>
5
#include <mutex>
6
7
using std::mutex;
8
using lock = std::unique_lock<std::mutex>;
9
using cond = std::condition_variable;
10
11
#endif