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

Explicitly allocate the alice permanent pool from the global default memory pool.

This commit is contained in:
tamlin 2001-12-29 10:08:21 +00:00
parent b3f36214c0
commit 532d971de1

View File

@ -24,7 +24,7 @@
//
//____________________________________________________________
//
// $Id: all.cpp,v 1.4 2001-12-28 05:14:41 tamlin Exp $
// $Id: all.cpp,v 1.5 2001-12-29 10:08:21 tamlin Exp $
//
#include "../alice/all.h"
@ -80,7 +80,7 @@ void ALLA_init(void)
AliceMemoryPool::create_new_pool();
#else
// TMN: John, what pool to use here?
tdgbl->ALICE_permanent_pool = new AliceMemoryPool;
tdgbl->ALICE_permanent_pool = new (*getDefaultMemoryPool()) AliceMemoryPool;
tdgbl->ALICE_default_pool = tdgbl->ALICE_permanent_pool;
#endif
}