Sync up with latest common toolkit changes.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@612 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-06-23 21:26:53 +00:00
parent e60875e316
commit 58d6cbdace
26 changed files with 1164 additions and 3920 deletions

View File

@@ -296,9 +296,9 @@ RCODE F_RowCacheMgr::initCache( void)
// Set up the F_Row object allocator
if (RC_BAD( rc = m_pRowAllocator->setup( &m_rowRelocator,
gv_SFlmSysData.pGlobalCacheMgr->m_pSlabManager,
sizeof( F_Row), &m_Usage.slabUsage)))
if (RC_BAD( rc = m_pRowAllocator->setup(
gv_SFlmSysData.pGlobalCacheMgr->m_pSlabManager,
&m_rowRelocator, sizeof( F_Row), &m_Usage.slabUsage, NULL)))
{
goto Exit;
}
@@ -311,8 +311,8 @@ RCODE F_RowCacheMgr::initCache( void)
// Set up the buffer allocator for F_Row objects
if (RC_BAD( rc = m_pBufAllocator->setup(
gv_SFlmSysData.pGlobalCacheMgr->m_pSlabManager,
&m_Usage.slabUsage)))
gv_SFlmSysData.pGlobalCacheMgr->m_pSlabManager, NULL,
&m_Usage.slabUsage, NULL)))
{
goto Exit;
}