mtx_plain, mtx_recursive, mtx_timed

Header: <threads.h>

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

# Declarations

enum {
mtx_plain = /* unspecified */,
mtx_recursive = /* unspecified */,
mtx_timed = /* unspecified */
};

(since C11)

# See also