Signed-off-by: kejun.zhou <kejun.z...@linaro.org>
---
 cpuidle/cpuidle_killer.c |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/cpuidle/cpuidle_killer.c b/cpuidle/cpuidle_killer.c
index 67a675e..5e7320f 100644
--- a/cpuidle/cpuidle_killer.c
+++ b/cpuidle/cpuidle_killer.c
@@ -2,7 +2,19 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
+#ifndef ANDROID
 #include <sys/timex.h>
+#else
+/* 
+* As of 4.0.4, Bionic doesn't provide the timex/adjtimex interface However, 
the kernel does.
+*/
+#include <linux/timex.h> /* for struct timex */
+#include <asm/unistd.h> /* for __NR_adjtimex */
+static int adjtimex(struct timex *buf)
+{
+       return syscall(__NR_adjtimex, buf);
+}
+#endif
 #include <sys/types.h>
 #include <sys/wait.h>
 #include <sys/param.h>
-- 
1.7.0.4


_______________________________________________
linaro-dev mailing list
linaro-dev@lists.linaro.org
http://lists.linaro.org/mailman/listinfo/linaro-dev

Reply via email to