8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00
This commit is contained in:
asfernandes 2007-11-24 00:12:17 +00:00
parent 8e8371a0ea
commit 89f1e09d69
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ Document date: 2007/11/21
==============
To make firebird have better performance under such circumsatnces
To make firebird have better performance under such circumstances
you may place your database not in a regular file on some
filesystem, but on raw device. Any type of block devices is
supported.

View File

@ -157,7 +157,7 @@ private:
//
class EngineMutexLockGuard {
public:
explicit EngineMutexLockGuard(Firebird::Mutex &alock)
explicit EngineMutexLockGuard(Firebird::Mutex& alock)
: lock(&alock)
{
ThreadExit te;
@ -167,7 +167,7 @@ private:
private:
// Forbid copy constructor
EngineMutexLockGuard(const EngineMutexLockGuard& source);
Firebird::Mutex *lock;
Firebird::Mutex* lock;
};
class CountersLockHolder : public AstInhibit, public EngineMutexLockGuard