提交 a944461d 编写于 作者: H hzcheng

TD-34

上级 ab22c7f6
...@@ -345,12 +345,12 @@ int32_t tsdbTriggerCommit(tsdb_repo_t *repo) { ...@@ -345,12 +345,12 @@ int32_t tsdbTriggerCommit(tsdb_repo_t *repo) {
int32_t tsdbLockRepo(tsdb_repo_t *repo) { int32_t tsdbLockRepo(tsdb_repo_t *repo) {
STsdbRepo *pRepo = (STsdbRepo *)repo; STsdbRepo *pRepo = (STsdbRepo *)repo;
return pthread_mutex_lock(repo); return pthread_mutex_lock(&(pRepo->mutex));
} }
int32_t tsdbUnLockRepo(tsdb_repo_t *repo) { int32_t tsdbUnLockRepo(tsdb_repo_t *repo) {
STsdbRepo *pRepo = (STsdbRepo *)repo; STsdbRepo *pRepo = (STsdbRepo *)repo;
return pthread_mutex_unlock(repo); return pthread_mutex_unlock(&(pRepo->mutex));
} }
/** /**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册