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:
jcalcote
2008-06-26 17:02:11 +00:00
parent 91f9f1b91c
commit e7548d8b4c
350 changed files with 4510 additions and 841 deletions
+6 -5
View File
@@ -1571,7 +1571,8 @@ FSTATIC RCODE flmRestoreFile(
if( !bIncremental)
{
pSFile->setBlockSize( uiBlockSize);
// JMC - FIXME: commented out due to missing functionality in flaimtk.h
// pSFile->setBlockSize( uiBlockSize);
}
// Make sure the maximum block file size matches what was read from the
@@ -2347,7 +2348,7 @@ RCODE F_BackerStream::flush( void)
// Wait for the background thread to become idle. When it
// does, we know that all writes have completed.
if( RC_BAD( rc = f_semWait( m_hIdleSem, F_SEM_WAITFOREVER)))
if( RC_BAD( rc = f_semWait( m_hIdleSem, F_WAITFOREVER)))
{
goto Exit;
}
@@ -2401,7 +2402,7 @@ RCODE F_BackerStream::signalThread( void)
// Wait for the thread to become idle
if( RC_BAD( rc = f_semWait( m_hIdleSem, F_SEM_WAITFOREVER)))
if( RC_BAD( rc = f_semWait( m_hIdleSem, F_WAITFOREVER)))
{
goto Exit;
}
@@ -2466,7 +2467,7 @@ RCODE F_BackerStream::readThread(
f_semSignal( pBackerStream->m_hIdleSem);
if( RC_BAD( rc = f_semWait( pBackerStream->m_hDataSem,
F_SEM_WAITFOREVER)))
F_WAITFOREVER)))
{
goto Exit;
}
@@ -2505,7 +2506,7 @@ RCODE FLMAPI F_BackerStream::writeThread(
f_semSignal( pBackerStream->m_hIdleSem);
if( RC_BAD( rc = f_semWait( pBackerStream->m_hDataSem,
F_SEM_WAITFOREVER)))
F_WAITFOREVER)))
{
goto Exit;
}