Lock mutex when accessing m_env in Server::~Server

This commit is contained in:
Perttu Ahola 2011-10-14 12:39:25 +03:00
parent 853a78681e
commit 080002f8ed
1 changed files with 18 additions and 12 deletions

View File

@ -1140,6 +1140,9 @@ Server::~Server()
}
}
{
JMutexAutoLock envlock(m_env_mutex);
/*
Save players
*/
@ -1151,6 +1154,7 @@ Server::~Server()
*/
dstream<<"Server: Saving environment metadata"<<std::endl;
m_env.saveMeta(m_mapsavedir);
}
/*
Stop threads
@ -1202,6 +1206,8 @@ void Server::stop()
{
DSTACK(__FUNCTION_NAME);
dout_server<<"Server: Stopping and waiting threads"<<std::endl;
// Stop threads (set run=false first so both start stopping)
m_thread.setRun(false);
m_emergethread.setRun(false);