summarylogtreecommitdiffstats
path: root/001-gettid.patch
blob: 00873b919e6094d4f5288b74721502b93df8c311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- a/src/util.h
+++ b/src/util.h
@@ -374,6 +374,7 @@ static inline int IsEmptyStr(const char *str)
     return 0;
 }
 
+#if !defined(__GLIBC__) || !defined(__GLIBC_PREREQ) || !__GLIBC_PREREQ(2, 30)
 static inline pid_t gettid(void)
 {
 #if defined(LINUX) && defined(SYS_gettid)
@@ -382,5 +383,6 @@ static inline pid_t gettid(void)
     return getpid();
 #endif
 }
+#endif
 
 #endif /*__UTIL_H__*/