thread/Util: no ioprio_set() on Android due to seccomp/SIGSYS

This commit is contained in:
Max Kellermann
2018-01-04 19:19:16 +01:00
parent fbdb8b406e
commit 329f9cd9fe
2 changed files with 6 additions and 1 deletions

View File

@@ -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);