On AIX, removed the pthread_mutexattr_setkind_np call. The man page

says this function is provided only for compatibility with the DCE
threads and should not be used when writing new applications.
This commit is contained in:
wtc%netscape.com 1999-01-07 01:33:57 +00:00
Родитель 2aa0689756
Коммит 824489f2fa
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -55,11 +55,6 @@ void _PR_InitLocks(void)
rv = PTHREAD_MUTEXATTR_INIT(&_pt_mattr);
PR_ASSERT(0 == rv);
#if defined(AIX)
rv = pthread_mutexattr_setkind_np(&_pt_mattr, MUTEX_FAST_NP);
PR_ASSERT(0 == rv);
#endif
rv = PTHREAD_CONDATTR_INIT(&_pt_cvar_attr);
PR_ASSERT(0 == rv);
_PR_MD_INIT_LOCKS();