diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-25 07:36:03 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-25 07:36:03 +0000 |
commit | 6df9aab415754846edd0bf13959d2bee802059ce (patch) | |
tree | a202051e4762983b1621c6fea104e8711ce3eec4 /ace/SOCK_Connector.cpp | |
parent | 527364f3765740bbbf0ee2f8f017ea0c985df10c (diff) | |
download | ATCD-6df9aab415754846edd0bf13959d2bee802059ce.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/SOCK_Connector.cpp')
-rw-r--r-- | ace/SOCK_Connector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/SOCK_Connector.cpp b/ace/SOCK_Connector.cpp index 5d7335910a4..c0333cda598 100644 --- a/ace/SOCK_Connector.cpp +++ b/ace/SOCK_Connector.cpp @@ -112,8 +112,8 @@ ACE_SOCK_Connector::complete (ACE_SOCK_Stream &new_stream, // Win32 has a timing problem - if you check to see if the // connection has completed too fast, it will fail - so wait 1 // millisecond to let it catch up. - ACE_Time_Value tv (0, 1000); - ACE_OS::sleep (tv); + ACE_Time_Value time (0, 1000); + ACE_OS::sleep (time); #endif /* ACE_HAS_BROKEN_NON_BLOCKING_CONNECTS */ ACE_HANDLE h = ACE::handle_timed_complete (this->get_handle (), tv); |