Support for atomic ops on additional platforms.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@278 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-04-04 15:24:18 +00:00
parent d3da23f3b3
commit c9c7da306c
28 changed files with 852 additions and 601 deletions

View File

@@ -56,19 +56,19 @@ RCODE F_DbSystemFactory::QueryInterface(
/********************************************************************
Desc:
*********************************************************************/
FLMUINT32 F_DbSystemFactory::AddRef(void)
FLMINT F_DbSystemFactory::AddRef(void)
{
LockModule();
return 2;
return( 2);
}
/********************************************************************
Desc:
*********************************************************************/
FLMUINT32 F_DbSystemFactory::Release(void)
FLMINT F_DbSystemFactory::Release(void)
{
UnlockModule();
return 1;
return( 1);
}
/********************************************************************