Bug 196528 - need a error suppression for pthread_rwlock_init under os x?
Summary: need a error suppression for pthread_rwlock_init under os x?
Status: RESOLVED FIXED
Alias: None
Product: valgrind
Classification: Developer tools
Component: memcheck (show other bugs)
Version: 3.5 SVN
Platform: Compiled Sources macOS
: NOR minor
Target Milestone: blocking3.5.0
Assignee: Julian Seward
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-06-14 21:33 UTC by Matt Pharr
Modified: 2009-06-25 06:13 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments
valgrind -v output (6.00 KB, text/plain)
2009-06-14 21:33 UTC, Matt Pharr
Details

Note You need to log in before you can comment on or make changes to this bug.
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.