Created attachment 34533 [details] valgrind -v output I'm seeing valgrind report errors from pthread_rwlock_init on the mac; I believe that it probably needs a suppression for this? The following program generates the attached output. #include <pthread.h> int main() { pthread_rwlock_t mutex; pthread_rwlock_init(&mutex, NULL); return 0; } Thanks, -matt
Suppression added in r10370. Thanks for the report.