From: Alexandre Oliva Date: Wed, 15 Nov 2023 01:16:29 +0000 (-0300) Subject: testsuite: tsan: add fallback overload for pthread_cond_clockwait X-Git-Tag: basepoints/gcc-15~4663 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5d94999ee6a7bd247c3d74959ebdd46334d7804;p=thirdparty%2Fgcc.git testsuite: tsan: add fallback overload for pthread_cond_clockwait LTS GNU/Linux distros from 2018, still in use, don't have pthread_cond_clockwait. There's no trivial way to detect it so as to make the test conditional, but there's an easy enough way to silence the fail due to lack of the function in libc, and that has nothing to do with the false positive that this is testing against. for gcc/testsuite/ChangeLog * g++.dg/tsan/pthread_cond_clockwait.C: Add fallback overload. --- diff --git a/gcc/testsuite/g++.dg/tsan/pthread_cond_clockwait.C b/gcc/testsuite/g++.dg/tsan/pthread_cond_clockwait.C index 82d6a5c8329e..b43f3ebf80e2 100644 --- a/gcc/testsuite/g++.dg/tsan/pthread_cond_clockwait.C +++ b/gcc/testsuite/g++.dg/tsan/pthread_cond_clockwait.C @@ -4,6 +4,19 @@ #include +// This overloaded version should only be selected on targets that +// don't have a pthread_cond_clockwait in pthread.h, and it will wait +// indefinitely for the cond_signal that, in this testcase, ought to +// be delivered. +static inline int +pthread_cond_clockwait (pthread_cond_t *cv, + pthread_mutex_t *mtx, + __clockid_t, + void const /* struct timespec */ *) +{ + return pthread_cond_wait (cv, mtx); +} + pthread_cond_t cv; pthread_mutex_t mtx;