diff options
author | Melanie | 2010-10-04 00:04:42 +0200 |
---|---|---|
committer | Melanie | 2010-10-04 00:04:42 +0200 |
commit | 50b03d08a8cdec9359adcece5b4645a6dc821d26 (patch) | |
tree | 1970b3ac7b8390397d9d96acc4501d757c96ce00 /OpenSim/Region | |
parent | Merge branch 'master' into careminster-presence-refactor (diff) | |
download | opensim-SC_OLD-50b03d08a8cdec9359adcece5b4645a6dc821d26.zip opensim-SC_OLD-50b03d08a8cdec9359adcece5b4645a6dc821d26.tar.gz opensim-SC_OLD-50b03d08a8cdec9359adcece5b4645a6dc821d26.tar.bz2 opensim-SC_OLD-50b03d08a8cdec9359adcece5b4645a6dc821d26.tar.xz |
Add linden prim renderer and update libOMV
Diffstat (limited to 'OpenSim/Region')
3 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/UnackedPacketCollection.cs b/OpenSim/Region/ClientStack/LindenUDP/UnackedPacketCollection.cs index c120a12..043e7d3 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/UnackedPacketCollection.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/UnackedPacketCollection.cs | |||
@@ -143,7 +143,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
143 | OutgoingPacket pendingAdd; | 143 | OutgoingPacket pendingAdd; |
144 | if (m_pendingAdds != null) | 144 | if (m_pendingAdds != null) |
145 | { | 145 | { |
146 | while (m_pendingAdds.Dequeue(out pendingAdd)) | 146 | while (m_pendingAdds.TryDequeue(out pendingAdd)) |
147 | { | 147 | { |
148 | if (pendingAdd != null && m_packets != null) | 148 | if (pendingAdd != null && m_packets != null) |
149 | { | 149 | { |
@@ -157,7 +157,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
157 | OutgoingPacket ackedPacket; | 157 | OutgoingPacket ackedPacket; |
158 | if (m_pendingRemoves != null) | 158 | if (m_pendingRemoves != null) |
159 | { | 159 | { |
160 | while (m_pendingRemoves.Dequeue(out pendingRemove)) | 160 | while (m_pendingRemoves.TryDequeue(out pendingRemove)) |
161 | { | 161 | { |
162 | if (m_pendingRemoves != null && m_packets != null) | 162 | if (m_pendingRemoves != null && m_packets != null) |
163 | { | 163 | { |
diff --git a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs index 9eaa758..6ed4867 100644 --- a/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs +++ b/OpenSim/Region/CoreModules/Asset/FlotsamAssetCache.cs | |||
@@ -252,7 +252,7 @@ namespace Flotsam.RegionModules.AssetCache | |||
252 | } | 252 | } |
253 | else | 253 | else |
254 | { | 254 | { |
255 | m_MemoryCache.AddOrUpdate(key, asset, DateTime.MaxValue); | 255 | m_MemoryCache.AddOrUpdate(key, asset, Double.MaxValue); |
256 | } | 256 | } |
257 | } | 257 | } |
258 | } | 258 | } |
@@ -863,4 +863,4 @@ namespace Flotsam.RegionModules.AssetCache | |||
863 | 863 | ||
864 | #endregion | 864 | #endregion |
865 | } | 865 | } |
866 | } \ No newline at end of file | 866 | } |
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs index 64788db..0da3f5f 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/UserAccountCache.cs | |||
@@ -53,9 +53,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.UserAccounts | |||
53 | public void Cache(UUID userID, UserAccount account) | 53 | public void Cache(UUID userID, UserAccount account) |
54 | { | 54 | { |
55 | // Cache even null accounts | 55 | // Cache even null accounts |
56 | m_UUIDCache.AddOrUpdate(userID, account, DateTime.Now + TimeSpan.FromSeconds(CACHE_EXPIRATION_SECONDS)); | 56 | m_UUIDCache.AddOrUpdate(userID, account, CACHE_EXPIRATION_SECONDS); |
57 | if (account != null) | 57 | if (account != null) |
58 | m_NameCache.AddOrUpdate(account.Name, account.PrincipalID, DateTime.Now + TimeSpan.FromSeconds(CACHE_EXPIRATION_SECONDS)); | 58 | m_NameCache.AddOrUpdate(account.Name, account.PrincipalID, CACHE_EXPIRATION_SECONDS); |
59 | 59 | ||
60 | // m_log.DebugFormat("[USER CACHE]: cached user {0}", userID); | 60 | // m_log.DebugFormat("[USER CACHE]: cached user {0}", userID); |
61 | } | 61 | } |