commit | 6acf3d7703cbbb7ca0585599aa731996e54bc726 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Sun Dec 14 16:51:36 2014 -0800 |
committer | Elliott Hughes <enh@google.com> | Sun Dec 14 16:51:36 2014 -0800 |
tree | 21416ff755619ecce5caacb8fba8b75936bce6de | |
parent | 48d7489e855df4126aee962087d3adaa763b26fe [diff] |
HAVE_ANDROID_OS implies that you have <pthread.h> and <sched.h>. Change-Id: Ica7940c00d1d5da9d50711fd138dd459deec9b6d
diff --git a/libcutils/sched_policy.c b/libcutils/sched_policy.c index d3cedd4..2a9d96b 100644 --- a/libcutils/sched_policy.c +++ b/libcutils/sched_policy.c
@@ -37,7 +37,7 @@ return p == SP_DEFAULT ? SP_SYSTEM_DEFAULT : p; } -#if defined(HAVE_ANDROID_OS) && defined(HAVE_SCHED_H) && defined(HAVE_PTHREADS) +#if defined(HAVE_ANDROID_OS) #include <pthread.h> #include <sched.h>