From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/c/thread%2Fmtx_types.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 devdocs/c/thread%2Fmtx_types.html (limited to 'devdocs/c/thread%2Fmtx_types.html') diff --git a/devdocs/c/thread%2Fmtx_types.html b/devdocs/c/thread%2Fmtx_types.html new file mode 100644 index 00000000..ecd98707 --- /dev/null +++ b/devdocs/c/thread%2Fmtx_types.html @@ -0,0 +1,23 @@ +

mtx_plain, mtx_recursive, mtx_timed

Defined in header <threads.h>
enum {
+    mtx_plain = /* unspecified */,
+    mtx_recursive = /* unspecified */,
+    mtx_timed = /* unspecified */
+};
+
(since C11)

When passed to mtx_init, identifies the type of a mutex to create.

+ + + + +
Constant Explanation
mtx_plain plain mutex
mtx_recursive recursive mutex
mtx_timed timed mutex

References

See also

+
+
(C11)
creates a mutex
(function)
+

+ © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
+ https://en.cppreference.com/w/c/thread/mtx_types +

+
-- cgit v1.2.3