Changes for HP-UX 11 - first semi-stable version

This commit is contained in:
Ralph Lange
2002-02-04 16:21:13 +00:00
parent 4bd3e02954
commit 3562336111
7 changed files with 66 additions and 30 deletions

View File

@@ -1,4 +1,3 @@
/*
* $Id$
*
@@ -80,7 +79,7 @@ dbServiceIO::~dbServiceIO ()
}
}
cacChannel *dbServiceIO::createChannel (
cacChannel *dbServiceIO::createChannel ( // X aCC 361
const char *pName, cacChannelNotify &notify,
cacChannel::priLev )
{
@@ -90,12 +89,12 @@ cacChannel *dbServiceIO::createChannel (
if ( status ) {
return 0;
}
else if ( ! ca_preemtive_callback_is_enabled () ) {
errlogPrintf (
"dbServiceIO: preemptive callback required for direct in\n"
"memory interfacing of CA channels to the DB.\n" );
return 0;
}
else if ( ! ca_preemtive_callback_is_enabled () ) {
errlogPrintf (
"dbServiceIO: preemptive callback required for direct in\n"
"memory interfacing of CA channels to the DB.\n" );
return 0;
}
else {
return new dbChannelIO ( notify, addr, *this );
}