aboutsummaryrefslogtreecommitdiff
path: root/src/utils/threadpool.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/threadpool.cc')
-rw-r--r--src/utils/threadpool.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/threadpool.cc b/src/utils/threadpool.cc
index a3099e1..6fa2e88 100644
--- a/src/utils/threadpool.cc
+++ b/src/utils/threadpool.cc
@@ -29,6 +29,7 @@
#include <cinttypes>
#include <cstddef>
#include <cstdint>
+#include <cstdio>
#include <cstring>
#include <new>
#include <utility>
@@ -216,7 +217,7 @@ void ThreadPool::WorkerThread::SetupName() {
rv = pthread_setname_np(name);
assert(rv == 0);
static_cast<void>(rv);
-#elif defined(__ANDROID__) || defined(__GLIBC__)
+#elif defined(__ANDROID__) || (defined(__GLIBC__) && !defined(__GNU__))
// If the |name| buffer is longer than 16 bytes, pthread_setname_np fails
// with error 34 (ERANGE) on Android.
char name[16];