various gnu compiler dialect issue fixes

This commit is contained in:
Jeff Hill
2000-05-03 00:41:30 +00:00
parent 6c61596f9e
commit 33f8e63c21
16 changed files with 36 additions and 35 deletions

View File

@@ -18,7 +18,7 @@
#include "iocinf.h"
#include "oldAccess.h"
tsFreeList < class getCallback > getCallback::freeList;
tsFreeList < class getCallback, 1024 > getCallback::freeList;
getCallback::getCallback (oldChannel &chanIn, caEventCallBackFunc *pFuncIn, void *pPrivateIn) :
chan (chanIn), pFunc (pFuncIn), pPrivate (pPrivateIn)
@@ -66,4 +66,4 @@ void * getCallback::operator new ( size_t size )
void getCallback::operator delete ( void *pCadaver, size_t size )
{
getCallback::freeList.release ( pCadaver, size );
}
}