| Summary: | need a error suppression for pthread_rwlock_init under os x? | ||
|---|---|---|---|
| Product: | [Developer tools] valgrind | Reporter: | Matt Pharr <matt> |
| Component: | memcheck | Assignee: | Julian Seward <jseward> |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | matt, njn |
| Priority: | NOR | ||
| Version First Reported In: | 3.5 SVN | ||
| Target Milestone: | blocking3.5.0 | ||
| Platform: | Compiled Sources | ||
| OS: | macOS | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | valgrind -v output | ||
Suppression added in r10370. Thanks for the report. |
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