fixed sun pro warnings

This commit is contained in:
Jeff Hill
2001-01-12 16:31:00 +00:00
parent cfe2ed5f17
commit d0574e2f19
9 changed files with 76 additions and 38 deletions

View File

@@ -47,8 +47,13 @@ void putCallback::completionNotify ()
(*this->pFunc) (args);
}
void putCallback::exceptionNotify (int status,
const char * /* pContext */ )
void putCallback::completionNotify ( unsigned type,
unsigned long count, const void *pData )
{
cacNotify::completionNotify ( type, count, pData );
}
void putCallback::exceptionNotify (int status, const char * /* pContext */ )
{
struct event_handler_args args;
@@ -61,6 +66,12 @@ void putCallback::exceptionNotify (int status,
(*this->pFunc) (args);
}
void putCallback::exceptionNotify ( int status,
const char *pContext, unsigned type, unsigned long count )
{
cacNotify::exceptionNotify ( status, pContext, type, count );
}
void * putCallback::operator new ( size_t size )
{
return putCallback::freeList.allocate ( size );