]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
Move profiler measurements into inside of mutex locking for more useful results
authorPerttu Ahola <celeron55@gmail.com>
Wed, 7 Mar 2012 19:54:18 +0000 (21:54 +0200)
committerPerttu Ahola <celeron55@gmail.com>
Wed, 7 Mar 2012 19:54:18 +0000 (21:54 +0200)
src/server.cpp

index 97fafd2c22c5355011a44dffab753b9ba681ec48..2facb146942907809501022971d66324c9a39df9 100644 (file)
@@ -1108,7 +1108,6 @@ void Server::AsyncRunStep()
        }
        
        {
-               ScopeProfiler sp(g_profiler, "Server: sel and send blocks to clients");
                // Send blocks to clients
                SendBlocks(dtime);
        }
@@ -1788,6 +1787,7 @@ void Server::AsyncRunStep()
                if(counter >= g_settings->getFloat("server_map_save_interval"))
                {
                        counter = 0.0;
+                       JMutexAutoLock lock(m_env_mutex);
 
                        ScopeProfiler sp(g_profiler, "Server: saving stuff");
 
@@ -1795,13 +1795,10 @@ void Server::AsyncRunStep()
                        if(m_authmanager.isModified())
                                m_authmanager.save();
 
-                       //Bann stuff
+                       //Ban stuff
                        if(m_banmanager.isModified())
                                m_banmanager.save();
                        
-                       // Map
-                       JMutexAutoLock lock(m_env_mutex);
-
                        // Save changed parts of map
                        m_env->getMap().save(MOD_STATE_WRITE_NEEDED);
 
@@ -1862,6 +1859,8 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
        JMutexAutoLock envlock(m_env_mutex);
        JMutexAutoLock conlock(m_con_mutex);
        
+       ScopeProfiler sp(g_profiler, "Server::ProcessData");
+       
        try{
                Address address = m_con.GetPeerAddress(peer_id);
 
@@ -3661,7 +3660,7 @@ void Server::SendBlocks(float dtime)
        JMutexAutoLock envlock(m_env_mutex);
        JMutexAutoLock conlock(m_con_mutex);
 
-       //TimeTaker timer("Server::SendBlocks");
+       ScopeProfiler sp(g_profiler, "Server: sel and send blocks to clients");
 
        core::array<PrioritySortedBlockTransfer> queue;