mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
12 lines
173 B
C++
12 lines
173 B
C++
#include <reentrant_mutex.h>
|
|
|
|
ReentrantMutex::ReentrantMutex() :
|
|
Mutex(PTHREAD_MUTEX_RECURSIVE)
|
|
{
|
|
}
|
|
|
|
ReentrantMutex::~ReentrantMutex()
|
|
{
|
|
//safely destroyed in ~Mutex();
|
|
}
|