second attempt to fix the compilation

This commit is contained in:
Krasimir Angelov
2022-06-29 21:48:48 +02:00
parent 46a9a8f07d
commit 69a2b8a448

View File

@@ -389,7 +389,7 @@ PgfDB::~PgfDB()
if (fd < 0) { if (fd < 0) {
pthread_rwlock_destroy(&ms->rwlock); pthread_rwlock_destroy(&ms->rwlock);
pthread_mutex_destroy(&ms->write_mutex); pthread_mutex_destroy(&ms->write_mutex);
pthread_mutex_destroy(&ms->rel_mutex); pthread_mutex_destroy(&ms->rev_mutex);
::free(ms); ::free(ms);
::free(base); ::free(base);
} else } else
@@ -1676,6 +1676,7 @@ void PgfDB::resize_map(size_t new_size)
throw pgf_systemerror(res); throw pgf_systemerror(res);
#else #else
while(true) { while(true) {
LONG temp;
while(true) { while(true) {
temp = ms->rwlock; temp = ms->rwlock;
assert(Writer(temp)); assert(Writer(temp));