From 693cfecffccfd52b39a6f7143b6d03cf242539e7 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Mon, 30 Aug 2010 10:15:30 +0000 Subject: Mon Aug 30 10:06:24 UTC 2010 Johnny Willemsen * 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 --- ACE/tests/Proactor_Test_IPV6.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ACE/tests/Proactor_Test_IPV6.cpp') diff --git a/ACE/tests/Proactor_Test_IPV6.cpp b/ACE/tests/Proactor_Test_IPV6.cpp index f66b47227f2..6f5ee3f31b2 100644 --- a/ACE/tests/Proactor_Test_IPV6.cpp +++ b/ACE/tests/Proactor_Test_IPV6.cpp @@ -952,7 +952,7 @@ Server::handle_read_stream (const ACE_Asynch_Read_Stream::Result &result) else mb.release (); - this->io_count_--; + --this->io_count_; if (this->io_count_ > 0) return; } @@ -1048,7 +1048,7 @@ Server::handle_write_stream (const ACE_Asynch_Write_Stream::Result &result) this->initiate_read_stream (); } - this->io_count_--; + --this->io_count_; if (this->io_count_ > 0) return; } @@ -1634,7 +1634,7 @@ Client::handle_write_stream (const ACE_Asynch_Write_Stream::Result &result) this->initiate_read_stream (); } - this->io_count_--; + --this->io_count_; if (this->io_count_ > 0) return; } @@ -1751,7 +1751,7 @@ Client::handle_read_stream (const ACE_Asynch_Read_Stream::Result &result) this->initiate_write_stream (); } - this->io_count_--; + --this->io_count_; if (this->io_count_ > 0) return; } -- cgit v1.2.1