Fixed various areas where code was being compiled for Linux only, but should actually be used on OS X too (bug 4392, r=dvander).

This commit is contained in:
Scott Ehlert
2010-05-29 18:11:47 -04:00
parent 9a35085ac3
commit e518605d69
12 changed files with 17 additions and 20 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ int busy_handler(void *unused1, int unused2)
{
#if defined PLATFORM_WINDOWS
Sleep(100);
#elif defined PLATFORM_LINUX
#elif defined PLATFORM_POSIX
usleep(100000);
#endif
return 1;