Two more sleep calls converted to use SleepMs().

This is CL 753005 in its new home.

BUG=603

Review URL: https://webrtc-codereview.appspot.com/1201008

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3761 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
hta@webrtc.org 2013-04-04 08:56:34 +00:00
parent bb8ada686e
commit fcb7c38b15
2 changed files with 5 additions and 9 deletions

View File

@ -14,6 +14,7 @@
#include <stdlib.h>
#include <winsock2.h>
#include "webrtc/system_wrappers/interface/sleep.h"
#include "webrtc/test/channel_transport/traffic_control_win.h"
#include "webrtc/test/channel_transport/udp_socket2_manager_win.h"
@ -629,7 +630,7 @@ WebRtc_Word32 UdpSocket2Windows::PostRecv(PerIoContext* pIoContext)
tries);
// Tell the OS that this is a good place to context switch if
// it wants to.
Sleep(0);
SleepMs(0);
}
}
if((rxError == ERROR_IO_PENDING) || (nRet == 0))

View File

@ -17,6 +17,7 @@
#include <unistd.h>
#include <stdio.h>
#include "webrtc/system_wrappers/interface/sleep.h"
#include "webrtc/system_wrappers/interface/trace.h"
#include "webrtc/test/channel_transport/udp_socket_posix.h"
@ -286,19 +287,13 @@ bool UdpSocketManagerPosixImpl::Process()
if (num == SOCKET_ERROR)
{
// Timeout = 10 ms.
timespec t;
t.tv_sec = 0;
t.tv_nsec = 10000*1000;
nanosleep(&t, NULL);
SleepMs(10);
return true;
}
}else
{
// Timeout = 10 ms.
timespec t;
t.tv_sec = 0;
t.tv_nsec = 10000*1000;
nanosleep(&t, NULL);
SleepMs(10);
return true;
}