mirror of
https://github.com/mangosfour/server.git
synced 2025-12-29 07:37:05 +00:00
[10643] Update the ACE part we use to 5.8.2
Signed-off-by: Neo2003 <Neo.2003@Hotmail.fr>
This commit is contained in:
parent
8f71d95c0d
commit
23c920ca4b
739 changed files with 22031 additions and 40373 deletions
|
|
@ -1,4 +1,4 @@
|
|||
// $Id: SOCK_IO.cpp 82294 2008-07-12 13:03:37Z johnnyw $
|
||||
// $Id: SOCK_IO.cpp 91604 2010-09-02 14:51:58Z vzykov $
|
||||
|
||||
#include "ace/SOCK_IO.h"
|
||||
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
#include "ace/SOCK_IO.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
ACE_RCSID(ace, SOCK_IO, "$Id: SOCK_IO.cpp 82294 2008-07-12 13:03:37Z johnnyw $")
|
||||
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
|
|
@ -44,13 +44,12 @@ ACE_SOCK_IO::recvv (iovec *io_vec,
|
|||
io_vec->iov_base = 0;
|
||||
|
||||
// Check the status of the current socket.
|
||||
int select_width;
|
||||
# if defined (ACE_WIN32)
|
||||
// This arg is ignored on Windows and causes pointer truncation
|
||||
// warnings on 64-bit compiles.
|
||||
select_width = 0;
|
||||
int select_width = 0;
|
||||
# else
|
||||
select_width = int (this->get_handle ()) + 1;
|
||||
int select_width = int (this->get_handle ()) + 1;
|
||||
# endif /* ACE_WIN32 */
|
||||
switch (ACE_OS::select (select_width,
|
||||
handle_set,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue