summaryrefslogtreecommitdiff
path: root/ACE/tests/Proactor_UDP_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-08-30 10:15:30 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-08-30 10:15:30 +0000
commit693cfecffccfd52b39a6f7143b6d03cf242539e7 (patch)
treece460f711dcecbbbbe1d4c1d384f10b9b6841da1 /ACE/tests/Proactor_UDP_Test.cpp
parent0eae92d8bc7ea8fadace854a250cb879743af4c7 (diff)
downloadATCD-693cfecffccfd52b39a6f7143b6d03cf242539e7.tar.gz
Mon Aug 30 10:06:24 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Reactor/Proactor/test_proactor2.cpp: * examples/Reactor/Proactor/test_proactor3.cpp: * tests/Proactor_Test.cpp: * tests/Proactor_Test_IPV6.cpp: * tests/Proactor_UDP_Test.cpp: ACE_Guard changes
Diffstat (limited to 'ACE/tests/Proactor_UDP_Test.cpp')
-rw-r--r--ACE/tests/Proactor_UDP_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/tests/Proactor_UDP_Test.cpp b/ACE/tests/Proactor_UDP_Test.cpp
index 85ed010e5f4..42db2649865 100644
--- a/ACE/tests/Proactor_UDP_Test.cpp
+++ b/ACE/tests/Proactor_UDP_Test.cpp
@@ -1210,7 +1210,7 @@ Server::handle_read_dgram (const ACE_Asynch_Read_Dgram::Result &result)
else
mb->release ();
- this->io_count_--;
+ --this->io_count_;
if (this->io_count_ > 0)
return;
}
@@ -1306,7 +1306,7 @@ Server::handle_write_dgram (const ACE_Asynch_Write_Dgram::Result &result)
this->initiate_read ();
}
- this->io_count_--;
+ --this->io_count_;
if (this->io_count_ > 0)
return;
}
@@ -1854,7 +1854,7 @@ Client::handle_write_dgram (const ACE_Asynch_Write_Dgram::Result &result)
this->initiate_read ();
}
- this->io_count_--;
+ --this->io_count_;
if (this->io_count_ > 0)
return;
}
@@ -1981,7 +1981,7 @@ Client::handle_read_dgram (const ACE_Asynch_Read_Dgram::Result &result)
}
mb->release ();
- this->io_count_--;
+ --this->io_count_;
if (this->io_count_ > 0)
return;
}