在像pthread_mutex_init
接口手冊頁,什麼是「默認互斥鎖屬性」的pthread_mutex **
int pthread_mutex_init(pthread_mutex_t *restrict mutex,
const pthread_mutexattr_t *restrict attr);
它說:「如果attr爲NULL,則默認互斥鎖屬性使用...的「,並且the default mutex attributes
被多次提及,並且在書The Linux Programming Interface
中也提到了它,但是它從未在任何地方詳細解釋過,我使用Google並沒有結果。
有一個帖子what is the "attribute" of a pthread mutex?,它提到「通常情況下,默認值是一組明智的屬性,但它可能因平臺而異」,但這不是我想要的,我想了解更多細節。
那麼,究竟是什麼default mutex attributes
?