8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 01:23:03 +01:00

Make it compilable when no PREAD_PWRITE present

This commit is contained in:
alexpeshkoff 2007-06-06 13:12:53 +00:00
parent 8a0238c13c
commit 221b80a080

View File

@ -79,10 +79,10 @@ using namespace Jrd;
#endif
#ifdef SUPERSERVER
#define THD_IO_MUTEX_INIT(mutx) THD_MUTEX_INIT(mutx)
#define THD_IO_MUTEX_LOCK(mutx) THD_MUTEX_LOCK(mutx)
#define THD_IO_MUTEX_UNLOCK(mutx) THD_MUTEX_UNLOCK(mutx)
#define THD_IO_MUTEX_DESTROY(mutx) THD_MUTEX_DESTROY(mutx)
#define THD_IO_MUTEX_INIT(mutx)
#define THD_IO_MUTEX_LOCK(mutx) mutx.enter()
#define THD_IO_MUTEX_UNLOCK(mutx) mutx.leave()
#define THD_IO_MUTEX_DESTROY(mutx)
#else
#define THD_IO_MUTEX_INIT(mutx)
#define THD_IO_MUTEX_LOCK(mutx)