Mercurial > sdl-ios-xcode
changeset 1156:8521404a33c7
Date: Tue, 11 Oct 2005 16:58:12 +0300 (EEST)
From: =?ISO-8859-1?Q?Martin_Storsj=F6?= <martin@martin.st>
To: sdl@libsdl.org
Subject: [SDL] [PATCH] Use nanosleep on OS X
Hi,
The current version of SDL_Delay on OS X seems to always sleep at least 10
msec. OS X has nanosleep(), which performs shorter sleeps well. The
attached patch makes it use that one instead of select() as currently.
// Martin
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Tue, 11 Oct 2005 17:33:03 +0000 |
parents | 91569ec25acd |
children | baf35853ad54 |
files | src/timer/linux/SDL_systimer.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/timer/linux/SDL_systimer.c Mon Oct 03 08:38:28 2005 +0000 +++ b/src/timer/linux/SDL_systimer.c Tue Oct 11 17:33:03 2005 +0000 @@ -55,7 +55,7 @@ /* Linux select() changes its timeout parameter upon return to contain the remaining time. Most other unixen leave it unchanged or undefined. */ #define SELECT_SETS_REMAINING -#elif defined(__bsdi__) || defined(__FreeBSD__) || defined(__sun) +#elif defined(__bsdi__) || defined(__FreeBSD__) || defined(__sun) || defined(MACOSX) #define USE_NANOSLEEP #endif