blob: d0493d67e6637f98357e13fb2181735b7a7dfddc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
== `sqlite/mutex.hpp`
The mutex header provides to std::mutex compatible classes using the sqlite mutex implementation.
This will allow C++ code to use mutex code matching the configuration of sqlite.
This may include the mutex being a noop.
[source,cpp,subs=+quotes]
----
// similar to std::mutex
struct mutex;
// similar to std::recursive_mutexx
struct recursive_mutex;
----
|