Change over to GNU build system - part 1
git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1056 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
@@ -588,7 +588,7 @@ RCODE flmWaitNotifyReq(
|
||||
|
||||
f_mutexUnlock( hMutex);
|
||||
|
||||
if( RC_BAD( TempRc = f_semWait( notifyItem.hSem, F_SEM_WAITFOREVER)))
|
||||
if( RC_BAD( TempRc = f_semWait( notifyItem.hSem, F_WAITFOREVER)))
|
||||
{
|
||||
rc = TempRc;
|
||||
}
|
||||
@@ -697,7 +697,8 @@ RCODE F_Db::linkToDatabase(
|
||||
|
||||
if( pDatabase->m_lastCommittedDbHdr.ui32DbVersion)
|
||||
{
|
||||
m_pSFileHdl->setBlockSize( pDatabase->m_uiBlockSize);
|
||||
// JMC - FIXME: commented out due to missing functionality in flaimtk.h
|
||||
// m_pSFileHdl->setBlockSize( pDatabase->m_uiBlockSize);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3256,6 +3257,21 @@ FLMUINT FLMAPI F_SuperFileClient::getFileOffset(
|
||||
{
|
||||
return( FSGetFileOffset( uiBlockAddr));
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
Desc:
|
||||
****************************************************************************/
|
||||
FLMUINT64 FLMAPI F_SuperFileClient::getMaxFileSize( void)
|
||||
{
|
||||
// JMC - FIXME: commented out due to missing functionality in flaimtk.h
|
||||
// if( m_uiDbVersion >= FLM_FILE_FORMAT_VER_4_3)
|
||||
// {
|
||||
// return( gv_FlmSysData.uiMaxFileSize);
|
||||
// }
|
||||
|
||||
#define MAX_FILE_SIZE_VER40 ((FLMUINT)0x7FF00000)
|
||||
return( MAX_FILE_SIZE_VER40);
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
Desc:
|
||||
|
||||
Reference in New Issue
Block a user