The Wayback Machine - https://web.archive.org/web/20160921030900/http://en.cppreference.com:80/w/c/thread/mtx_init
Namespaces
Variants
Views
Actions

mtx_init

From cppreference.com
< c‎ | thread
Defined in header <threads.h>
int mtx_init( mtx_t* mutex, int type );
(since C11)

Creates a new mutex object with type. The object pointed to by mutex is set to an identifier of the newly created mutex.

type must have one of the following values:

[edit] Parameters

mutex - pointer to the mutex to initialize
type - the type of the mutex

[edit] Return value

thrd_success if successful, thrd_error otherwise.

[edit] References

  • C11 standard (ISO/IEC 9899:2011):
  • 7.26.4.2 The mtx_init function (p: 381)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.