aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index c8c00c8..516327c 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -1161,7 +1161,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1161 /// <param name="map">heightmap</param> 1161 /// <param name="map">heightmap</param>
1162 public virtual void SendLayerData(float[] map) 1162 public virtual void SendLayerData(float[] map)
1163 { 1163 {
1164 Util.FireAndForget(DoSendLayerData, m_scene.Heightmap.GetTerrainData()); 1164 Util.FireAndForget(DoSendLayerData, m_scene.Heightmap.GetTerrainData(), "LLClientView.DoSendLayerData");
1165 } 1165 }
1166 1166
1167 /// <summary> 1167 /// <summary>
@@ -1373,7 +1373,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1373 /// <param name="windSpeeds">16x16 array of wind speeds</param> 1373 /// <param name="windSpeeds">16x16 array of wind speeds</param>
1374 public virtual void SendWindData(Vector2[] windSpeeds) 1374 public virtual void SendWindData(Vector2[] windSpeeds)
1375 { 1375 {
1376 Util.FireAndForget(DoSendWindData, windSpeeds); 1376 Util.FireAndForget(DoSendWindData, windSpeeds, "LLClientView.SendWindData");
1377 } 1377 }
1378 1378
1379 /// <summary> 1379 /// <summary>
@@ -1382,7 +1382,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1382 /// <param name="windSpeeds">16x16 array of cloud densities</param> 1382 /// <param name="windSpeeds">16x16 array of cloud densities</param>
1383 public virtual void SendCloudData(float[] cloudDensity) 1383 public virtual void SendCloudData(float[] cloudDensity)
1384 { 1384 {
1385 Util.FireAndForget(DoSendCloudData, cloudDensity); 1385 Util.FireAndForget(DoSendCloudData, cloudDensity, "LLClientView.SendCloudData");
1386 } 1386 }
1387 1387
1388 /// <summary> 1388 /// <summary>
@@ -8093,7 +8093,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
8093 { 8093 {
8094 // This requests the asset if needed 8094 // This requests the asset if needed
8095 HandleSimInventoryTransferRequestWithPermsCheck(sender, transfer); 8095 HandleSimInventoryTransferRequestWithPermsCheck(sender, transfer);
8096 }); 8096 }, null, "LLClientView.HandleTransferRequest");
8097
8097 return true; 8098 return true;
8098 } 8099 }
8099 } 8100 }