what is the “attribute” of a pthread mutex?
The best place to find that information is from the POSIX standards pages. A NULL mutex attribute gives you an implementation defined default attribute. If you want to know what you can do with attributes, check out the following reference and follow the pthread_mutexattr_* links in the SEE ALSO section. Usually, the default is a … Read more