HAVE_NANOSLEEP

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3091 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2001-11-23 18:25:32 +00:00
parent 1393c53eb4
commit 575828bf12
1 changed files with 2 additions and 1 deletions

View File

@ -3,10 +3,11 @@
#include <unistd.h>
#include <time.h>
#include <sys/time.h>
#include "../config.h"
int usec_sleep(int usec_delay)
{
#if 1
#ifdef HAVE_NANOSLEEP
struct timespec ts;
ts.tv_sec = usec_delay / 1000000;
ts.tv_nsec = (usec_delay % 1000000) * 1000;