This commit is contained in:
Jeff Hill
2002-12-05 23:43:04 +00:00
parent bdc11782b9
commit fd2e9764a4
3 changed files with 5 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ public:
void * allocate ( size_t );
void release ( void * );
private:
tsFreeList < class bhe, 0x100 > freeList;
tsFreeList < bhe, 0x100 > freeList;
};
inline void * bhe::operator new ( size_t size,

View File

@@ -103,7 +103,7 @@ public:
void * allocate ( size_t ) epicsThrows (( std::bad_alloc ));
void release ( void * ) epicsThrows (());
private:
tsFreeList < class comBuf, 0x20 > freeList;
tsFreeList < comBuf, 0x20 > freeList;
};
class cacDisconnectChannelPrivate { // X aCC 655
@@ -229,7 +229,7 @@ private:
tsFreeList
< class netSubscription, 1024, epicsMutexNOOP >
freeListSubscription;
tsFreeList < class nciu, 1024 > channelFreeList;
tsFreeList < nciu, 1024 > channelFreeList;
tsFreeList
< class msgForMultiplyDefinedPV, 16 >
mdpvFreeList;

View File

@@ -76,7 +76,8 @@ extern "C" {
* net format: big endian and IEEE float
*/
typedef void CACVRTFUNC (const void *pSrc, void *pDest, int hton, arrayElementCount count);
typedef void CACVRTFUNC (const void *pSrc, void *pDest,
int hton, arrayElementCount count);
#ifdef CONVERSION_REQUIRED
/* cvrt is (array of) (pointer to) (function returning) int */