function name change

This commit is contained in:
Jeff Hill
2001-10-15 21:19:16 +00:00
parent 28282e176d
commit 75cf4ebcff
3 changed files with 5 additions and 5 deletions

View File

@@ -103,7 +103,7 @@ private:
void exception ( int status, const char *pContext, unsigned type, arrayElementCount count );
};
class oldCAC;
struct oldCAC;
struct CASG : public chronIntIdRes < CASG >, private casgRecycle {
public:

View File

@@ -258,7 +258,7 @@ extern "C" void cacRecvThreadTCP ( void *pParam )
// appear to impact performance.
//
unsigned nBytesIn;
if ( piiu->pCAC()->preemptiveCallbackEnable() ) {
if ( piiu->pCAC()->preemptiveCallbakIsEnabled() ) {
nBytesIn = pComBuf->fillFromWire ( *piiu );
if ( nBytesIn == 0u ) {
break;
@@ -286,7 +286,7 @@ extern "C" void cacRecvThreadTCP ( void *pParam )
// this lock get a chance to run
callbackAutoMutex autoMutex ( *piiu->pCAC() );
if ( ! piiu->pCAC()->preemptiveCallbackEnable() ) {
if ( ! piiu->pCAC()->preemptiveCallbakIsEnabled() ) {
nBytesIn = pComBuf->fillFromWire ( *piiu );
if ( nBytesIn == 0u ) {
// outer loop checks to see if state is connected

View File

@@ -196,7 +196,7 @@ void udpiiu::recvMsg ()
osiSockAddr src;
int status;
if ( this->pCAC()->preemptiveCallbackEnable() ) {
if ( this->pCAC()->preemptiveCallbakIsEnabled() ) {
osiSocklen_t src_size = sizeof ( src );
status = recvfrom ( this->sock, this->recvBuf, sizeof ( this->recvBuf ), 0,
&src.sa, &src_size );
@@ -214,7 +214,7 @@ void udpiiu::recvMsg ()
{
callbackAutoMutex autoMutex ( *this->pCAC() );
if ( ! this->pCAC()->preemptiveCallbackEnable() ) {
if ( ! this->pCAC()->preemptiveCallbakIsEnabled() ) {
osiSocklen_t src_size = sizeof ( src );
status = recvfrom ( this->sock, this->recvBuf, sizeof ( this->recvBuf ), 0,
&src.sa, &src_size );