function name change
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user