diff --git a/ndk/platforms/android-3/include/sys/limits.h b/ndk/platforms/android-3/include/sys/limits.h index 41d02ff3c..5b127ebb2 100644 --- a/ndk/platforms/android-3/include/sys/limits.h +++ b/ndk/platforms/android-3/include/sys/limits.h @@ -169,7 +169,8 @@ #undef _POSIX_PROCESS_SHARED /* we don't support process-shared synchronization */ #undef _POSIX_THREAD_SAFE_FUNCTIONS /* most functions are, but not everything yet */ -#define _POSIX_CHOWN_RESTRICTED 1 /* yes, chown requires appropriate priviledges */ +#define _POSIX_CHOWN_RESTRICTED 1 /* yes, chown requires appropriate privileges */ +#define _POSIX_MONOTONIC_CLOCK 0 /* the monotonic clock may be available; ask sysconf */ #define _POSIX_NO_TRUNC 1 /* very long pathnames generate an error */ #define _POSIX_SAVED_IDS 1 /* saved user ids is a Linux feature */ #define _POSIX_JOB_CONTROL 1 /* job control is a Linux feature */ diff --git a/ndk/platforms/android-3/include/sys/sysconf.h b/ndk/platforms/android-3/include/sys/sysconf.h index 2fc1b0888..0a46e7aab 100644 --- a/ndk/platforms/android-3/include/sys/sysconf.h +++ b/ndk/platforms/android-3/include/sys/sysconf.h @@ -127,8 +127,9 @@ __BEGIN_DECLS #define _SC_NPROCESSORS_ONLN 0x0061 #define _SC_PHYS_PAGES 0x0062 #define _SC_AVPHYS_PAGES 0x0063 +#define _SC_MONOTONIC_CLOCK 0x0064 -extern int sysconf (int name); +extern int sysconf(int name); __END_DECLS