dont hold lock while calling callbacks

This commit is contained in:
Jeff Hill
2001-04-16 22:38:38 +00:00
parent 4b99a3d268
commit 332a7228a8
42 changed files with 2623 additions and 1964 deletions

View File

@@ -20,19 +20,19 @@ cacChannelNotify::~cacChannelNotify ()
{
}
void cacChannelNotify::connectNotify ( cacChannelIO & )
void cacChannelNotify::connectNotify ( cacChannel & )
{
}
void cacChannelNotify::disconnectNotify ( cacChannelIO & )
void cacChannelNotify::disconnectNotify ( cacChannel & )
{
}
void cacChannelNotify::accessRightsNotify ( cacChannelIO &, const caar & )
void cacChannelNotify::accessRightsNotify ( cacChannel &, const caAccessRights & )
{
}
void cacChannelNotify::exceptionNotify ( cacChannelIO &io, int status, const char *pContext )
void cacChannelNotify::exception ( cacChannel &io, int status, const char *pContext )
{
ca_signal_formated ( status, __FILE__, __LINE__, "channel=%s context=\"%s\"\n",
io.pHostName (), pContext );
@@ -42,8 +42,3 @@ bool cacChannelNotify::includeFirstConnectInCountOfOutstandingIO () const
{
return false;
}
class oldChannelNotify * cacChannelNotify::pOldChannelNotify ()
{
return 0;
}