diff options
author | Diva Canto | 2009-10-09 11:32:53 -0700 |
---|---|---|
committer | Diva Canto | 2009-10-09 11:32:53 -0700 |
commit | 8231cb22316e9492dd9e295ac9156689bede2ec3 (patch) | |
tree | 6d8f0728cffccff5314dc9c9f7cf13a68127ff7a /OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs | |
parent | Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-8231cb22316e9492dd9e295ac9156689bede2ec3.zip opensim-SC_OLD-8231cb22316e9492dd9e295ac9156689bede2ec3.tar.gz opensim-SC_OLD-8231cb22316e9492dd9e295ac9156689bede2ec3.tar.bz2 opensim-SC_OLD-8231cb22316e9492dd9e295ac9156689bede2ec3.tar.xz |
Putting this to exactly what it was yesterday around this time, so we can do the 100-ppl load test in WP. We need to carefully play with this code in order to understand all the problems.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs index dbb9861..784426f 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs | |||
@@ -247,16 +247,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
247 | 247 | ||
248 | ////return success; | 248 | ////return success; |
249 | 249 | ||
250 | lock (m_sync) | 250 | //lock (m_sync) |
251 | return Dictionary2.TryGetValue(key, out value); | ||
252 | |||
253 | //try | ||
254 | //{ | ||
255 | // return Dictionary2.TryGetValue(key, out value); | 251 | // return Dictionary2.TryGetValue(key, out value); |
256 | //} | 252 | |
257 | //catch { } | 253 | try |
258 | //value = null; | 254 | { |
259 | //return false; | 255 | return Dictionary2.TryGetValue(key, out value); |
256 | } | ||
257 | catch { } | ||
258 | value = null; | ||
259 | return false; | ||
260 | 260 | ||
261 | } | 261 | } |
262 | 262 | ||