Add the missing parameter to mutex_create().
This commit is contained in:
Vasil Dimov 2010-05-04 14:47:35 +03:00
parent 8d07cec06c
commit 0f5326b417

View file

@ -685,7 +685,8 @@ dict_init(void)
&dict_foreign_err_mutex, SYNC_ANY_LATCH);
for (i = 0; i < DICT_INDEX_STAT_MUTEX_SIZE; i++) {
mutex_create(&dict_index_stat_mutex[i], SYNC_INDEX_TREE);
mutex_create(PFS_NOT_INSTRUMENTED,
&dict_index_stat_mutex[i], SYNC_INDEX_TREE);
}
}