From 6ce71a7b5484ba42bc720e19ae769beae5f6ba45 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 11 Sep 2001 14:34:59 +0000 Subject: [PATCH] doc --- src/ca/tcpiiu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/tcpiiu.cpp b/src/ca/tcpiiu.cpp index 638e9836e..a600e36fb 100644 --- a/src/ca/tcpiiu.cpp +++ b/src/ca/tcpiiu.cpp @@ -598,7 +598,7 @@ void tcpiiu::shutdown ( bool discardPendingMessages ) } } // linux threads in recv() dont wakeup unless we also - // call shutdown ( close by itself is not enough ) + // call shutdown ( close() by itself is not enough ) int status = ::shutdown ( this->sock, SD_BOTH ); if ( status ) { errlogPrintf ("CAC TCP socket shutdown error was %s\n", @@ -606,7 +606,7 @@ void tcpiiu::shutdown ( bool discardPendingMessages ) } // // on winsock and probably vxWorks shutdown() does not - // unblock a thread in recv() so we use close and introduce + // unblock a thread in recv() so we use close() and introduce // some complexity because we must unregister the fd early // status = socket_close ( this->sock );