Bug 1307723 - Use USE_CLOCK_API on Android 64-bit. r=terrence

MozReview-Commit-ID: GTPaqSbkh9T
This commit is contained in:
Makoto Kato 2016-10-06 15:53:11 +09:00
Родитель c23e011297
Коммит a63d9581cc
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -23,8 +23,9 @@ using mozilla::TimeStamp;
static const long NanoSecPerSec = 1000000000;
// Android & macOS 10.12 has the clock functions, but not pthread_condattr_setclock.
#if defined(HAVE_CLOCK_MONOTONIC) && !defined(__ANDROID__) && !defined(__APPLE__)
// Android 32-bit & macOS 10.12 has the clock functions, but not pthread_condattr_setclock.
#if defined(HAVE_CLOCK_MONOTONIC) && \
!(defined(__ANDROID__) && !defined(__LP64__)) && !defined(__APPLE__)
# define USE_CLOCK_API
#endif