Android defines __USE_GNU but does not provide pthread_attr_setaffinity_np()
so added an extra guard arround pthread_attr_setaffinity_np().

Signed-off-by: Derek Morton <derek.j.mor...@intel.com>
---
 benchmarks/gem_syslatency.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/benchmarks/gem_syslatency.c b/benchmarks/gem_syslatency.c
index f09050c..6cad3a0 100644
--- a/benchmarks/gem_syslatency.c
+++ b/benchmarks/gem_syslatency.c
@@ -189,6 +189,7 @@ static void *sys_wait(void *arg)
 static void bind_cpu(pthread_attr_t *attr, int cpu)
 {
 #ifdef __USE_GNU
+#ifndef ANDROID
        cpu_set_t mask;
 
        if (cpu == -1)
@@ -199,6 +200,7 @@ static void bind_cpu(pthread_attr_t *attr, int cpu)
 
        pthread_attr_setaffinity_np(attr, sizeof(mask), &mask);
 #endif
+#endif
 }
 
 static void rtprio(pthread_attr_t *attr, int prio)
-- 
1.9.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to