https://bugs.kde.org/show_bug.cgi?id=445504
--- Comment #13 from Paul Floyd <pjfl...@wanadoo.fr> --- My plan is to add this patch plus the testcase (which Bart has put into vgtest format). I need to do a little bit of work to get the Valgrind configure script to test for the C++ features used in the testcase. After that I'll look at the other 'clock' pthread APIs. A quick grep of libstdc++ shows the current usage: include/bits/std_mutex.h: pthread_cond_clockwait(&_M_cond, __m.native_handle(), __clock, include/std/mutex: { return !pthread_mutex_clocklock(&_M_mutex, clockid, &__ts); } include/std/mutex: { return !pthread_mutex_clocklock(&_M_mutex, clockid, &__ts); } include/std/shared_mutex: int __ret = pthread_rwlock_clockwrlock(&_M_rwlock, CLOCK_MONOTONIC, include/std/shared_mutex: int __ret = pthread_rwlock_clockrdlock(&_M_rwlock, CLOCK_MONOTONIC, That's 3 more functions: pthread_mutex_clocklock, pthread_rwlock_clockwrlock, pthread_rwlock_clockrdlock -- You are receiving this mail because: You are watching all bug changes.