summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2005-06-20 15:43:51 +0000
committerSteve Huston <shuston@riverace.com>2005-06-20 15:43:51 +0000
commitd9180db22839fa1f71d03e64daa52b6ae98113f0 (patch)
tree6f87a169bc92005078f81fed4c974ed1bd3dc5a1 /ace
parentb08934c1f18fa77698dd451cbffe8c1bdb32187b (diff)
downloadATCD-d9180db22839fa1f71d03e64daa52b6ae98113f0.tar.gz
ChangeLogTag:Mon Jun 20 11:36:21 2005 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace')
-rw-r--r--ace/OS_NS_sys_socket.inl6
1 files changed, 0 insertions, 6 deletions
diff --git a/ace/OS_NS_sys_socket.inl b/ace/OS_NS_sys_socket.inl
index e60d3894a0b..f66f8a09558 100644
--- a/ace/OS_NS_sys_socket.inl
+++ b/ace/OS_NS_sys_socket.inl
@@ -129,12 +129,6 @@ ACE_OS::closesocket (ACE_HANDLE handle)
#elif defined (ACE_PSOS_DIAB_PPC)
ACE_OSCALL_RETURN (::pna_close (handle), int, -1);
#else
-# if defined (HPUX)
- // HP-UX, at least with current BSD socket semantics, will not abort
- // an in-progress operation on a socket that is close()ed. But it
- // will for one that is shutdown()ed.
- ACE_OS::shutdown (handle, SHUT_RDWR);
-# endif /* HPUX */
ACE_OSCALL_RETURN (::close (handle), int, -1);
#endif /* ACE_WIN32 */
}