Fix Android build after Mac iteration

This commit is contained in:
Aaron Culliney 2015-11-14 11:09:33 -08:00
parent c35122beb6
commit 46c286719f
2 changed files with 1 additions and 3 deletions

View File

@ -16,7 +16,7 @@
# define _GNU_SOURCE 1
#endif
#if !defined(TEMP_FAILURE_RETRY)
#ifdef __APPLE__
# warning DEFINING CUSTOM TEMP_FAILURE_RETRY(x) macro
# define TEMP_FAILURE_RETRY(exp) ({ \
typeof (exp) _rc; \

View File

@ -68,8 +68,6 @@ static void _shutdown_threads(void) {
static struct timespec ts = { .tv_sec=0, .tv_nsec=33333333 };
nanosleep(&ts, NULL); // 30Hz framerate
} while (1);
# elif !defined(__APPLE__)
# error TODO FIXME ... verify leaks-n-things with Valgrind on unknown platform
# endif
#endif
}