Bug 196528

Summary: need a error suppression for pthread_rwlock_init under os x?
Product: [Developer tools] valgrind Reporter: Matt Pharr <matt>
Component: memcheckAssignee: Julian Seward <jseward>
Status: RESOLVED FIXED    
Severity: minor CC: matt, njn
Priority: NOR    
Version: 3.5 SVN   
Target Milestone: blocking3.5.0   
Platform: Compiled Sources   
OS: macOS   
Latest Commit: Version Fixed In:
Attachments: valgrind -v output

Description Matt Pharr 2009-06-14 21:33:28 UTC
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
Comment 1 Nicholas Nethercote 2009-06-24 07:02:19 UTC
Suppression added in r10370.  Thanks for the report.