MCPcopy Create free account
hub / github.com/OpenKinect/libfreenect2 / ~recursive_mutex

Method ~recursive_mutex

src/tinythread/tinythread.h:269–276  ·  view source on GitHub ↗

Destructor.

Source from the content-addressed store, hash-verified

267
268 /// Destructor.
269 ~recursive_mutex()
270 {
271#if defined(_TTHREAD_WIN32_)
272 DeleteCriticalSection(&mHandle);
273#else
274 pthread_mutex_destroy(&mHandle);
275#endif
276 }
277
278 /// Lock the mutex.
279 /// The method will block the calling thread until a lock on the mutex can

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected