mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 03:23:04 +01:00
Spelling fixed - thanks to Adriano
This commit is contained in:
parent
6590c28174
commit
8638c77c2f
@ -166,7 +166,7 @@ private:
|
||||
|
||||
public:
|
||||
// This is maximum block size which is cached (not allocated directly from OS)
|
||||
enum RecommendedBufferSize { MAX_MEDUIM_BLOCK_SIZE = 64384 }; // MediumLimits::TOP_LIMIT - 128
|
||||
enum RecommendedBufferSize { MAX_MEDIUM_BLOCK_SIZE = 64384 }; // MediumLimits::TOP_LIMIT - 128
|
||||
|
||||
static MemoryPool* defaultMemoryManager;
|
||||
|
||||
|
@ -579,8 +579,8 @@ void testAllocator()
|
||||
VERIFY_POOL(pool);
|
||||
VERIFY_POOL(parent);
|
||||
|
||||
printf("Allocate max recommended medium buffer (%d bytes): ", MemoryPool::MAX_MEDUIM_BLOCK_SIZE);
|
||||
void* maxMedium = pool->allocate(MemoryPool::MAX_MEDUIM_BLOCK_SIZE);
|
||||
printf("Allocate max recommended medium buffer (%d bytes): ", MemoryPool::MAX_MEDIUM_BLOCK_SIZE);
|
||||
void* maxMedium = pool->allocate(MemoryPool::MAX_MEDIUM_BLOCK_SIZE);
|
||||
printf(" DONE\n");
|
||||
VERIFY_POOL(pool);
|
||||
VERIFY_POOL(parent);
|
||||
|
Loading…
Reference in New Issue
Block a user