8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 20:03:03 +01:00
firebird-mirror/src/jrd/smp_impl.h
robocop 5c3c8abd9a Big cleanup.
God have pity on platform maintainers.
I only can compile/test Win32; sorry, folks.
2004-02-20 06:43:27 +00:00

37 lines
556 B
C++

#ifndef JRD_SMP_IMPL_H
#define JRD_SMP_IMPL_H
#include "../jrd/smp.h"
#include "../jrd/thd.h"
class V4Mutex : public SmpLock
{
public:
V4Mutex() {
#ifdef V4_THREADING
V4_MUTEX_INIT(&mutex);
#endif
}
~V4Mutex() {
#ifdef V4_THREADING
V4_MUTEX_DESTROY(&mutex);
#endif
}
virtual void aquire(void) {
#ifdef V4_THREADING
V4_MUTEX_LOCK(&mutex);
#endif
}
virtual void release(void) {
#ifdef V4_THREADING
V4_MUTEX_UNLOCK(&mutex);
#endif
}
private:
MUTX mutex;
};
#endif // JRD_SMP_IMPL_H