aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-02-07 02:13:53 +0800
committerYuqian Yang <crupest@crupest.life>2025-02-07 02:13:53 +0800
commitc67dd4f865c68362ee986cab9618bbb4f58fc4a7 (patch)
tree2e934dfca24864720f790fff8be3542c4894b138
parentb125a093a423ee4875f374919bd5eaea73e690ae (diff)
downloadlibgav1-c67dd4f865c68362ee986cab9618bbb4f58fc4a7.tar.gz
libgav1-c67dd4f865c68362ee986cab9618bbb4f58fc4a7.tar.bz2
libgav1-c67dd4f865c68362ee986cab9618bbb4f58fc4a7.zip
Disable gettid for GNU/Hurd.HEADmaster
GNU/Hurd does not support gettid. It is specific to Linux.
-rw-r--r--src/utils/threadpool.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/threadpool.cc b/src/utils/threadpool.cc
index 6fa2e88..97efc36 100644
--- a/src/utils/threadpool.cc
+++ b/src/utils/threadpool.cc
@@ -42,6 +42,8 @@
// Linux.
#if defined(__ANDROID__)
static pid_t GetTid() { return gettid(); }
+#elif defined(__GNU__)
+// GNU/Hurd does not support gettid.
#elif defined(__GLIBC__)
// The glibc wrapper for the gettid() system call was added in glibc 2.30.
// Emulate it for older versions of glibc.