mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 15:02:58 +02:00
17 lines
292 B
C++
17 lines
292 B
C++
#ifndef _REENTRANT_MUTEX_H
|
|
#define _REENTRANT_MUTEX_H
|
|
|
|
#include "mutex_abstraction.h"
|
|
|
|
class ReentrantMutex : public Mutex
|
|
{
|
|
ReentrantMutex(const ReentrantMutex&);
|
|
const ReentrantMutex& operator=(const ReentrantMutex&);
|
|
|
|
public:
|
|
ReentrantMutex();
|
|
virtual ~ReentrantMutex();
|
|
};
|
|
|
|
#endif
|