diff options
Diffstat (limited to 'subprojects/boost-sqlite/doc/reference/mutex.adoc')
-rw-r--r-- | subprojects/boost-sqlite/doc/reference/mutex.adoc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/subprojects/boost-sqlite/doc/reference/mutex.adoc b/subprojects/boost-sqlite/doc/reference/mutex.adoc new file mode 100644 index 0000000..d0493d6 --- /dev/null +++ b/subprojects/boost-sqlite/doc/reference/mutex.adoc @@ -0,0 +1,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; +---- + + |