summaryrefslogtreecommitdiff
path: root/src/thread/Util.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/Util.cxx')
-rw-r--r--src/thread/Util.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/thread/Util.cxx b/src/thread/Util.cxx
index 6213d9777..c4c93f82e 100644
--- a/src/thread/Util.cxx
+++ b/src/thread/Util.cxx
@@ -38,7 +38,7 @@
#include <windows.h>
#endif
-#ifdef __linux__
+#if defined(__linux__) && !defined(ANDROID)
static int
ioprio_set(int which, int who, int ioprio)
@@ -69,7 +69,11 @@ SetThreadIdlePriority()
sched_setscheduler(0, SCHED_IDLE, &sched_param);
#endif
+#ifndef ANDROID
+ /* this system call is forbidden via seccomp on Android 8 and
+ leads to crash (SIGSYS) */
ioprio_set_idle();
+#endif
#elif defined(_WIN32)
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_IDLE);