Files
libstb-hal/libthread/reentrant_mutex.cpp
2015-01-12 18:15:08 +01:00

12 lines
173 B
C++

#include <reentrant_mutex.h>
ReentrantMutex::ReentrantMutex() :
Mutex(PTHREAD_MUTEX_RECURSIVE)
{
}
ReentrantMutex::~ReentrantMutex()
{
//safely destroyed in ~Mutex();
}