Got rid of XFLM_NO_TIMEOUT and replaced it with FLM_NO_TIMEOUT from FTK.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@486 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-30 22:32:41 +00:00
parent 2c520933ae
commit d07c2efb64
18 changed files with 34 additions and 40 deletions

View File

@@ -99,7 +99,7 @@ RCODE F_DbSystem::dbCopy(
// threads have the opportunity to get in and update the
// database.
if (RC_BAD( rc = pDb->dbLock( FLM_LOCK_EXCLUSIVE, 0, XFLM_NO_TIMEOUT)))
if (RC_BAD( rc = pDb->dbLock( FLM_LOCK_EXCLUSIVE, 0, FLM_NO_TIMEOUT)))
{
goto Exit;
}
@@ -107,7 +107,7 @@ RCODE F_DbSystem::dbCopy(
// Force a checkpoint
if (RC_BAD( rc = pDb->doCheckpoint( XFLM_NO_TIMEOUT)))
if (RC_BAD( rc = pDb->doCheckpoint( FLM_NO_TIMEOUT)))
{
goto Exit;
}