aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorOren Hurvitz2013-09-18 15:55:42 +0300
committerJustin Clark-Casey (justincc)2013-10-15 00:12:56 +0100
commitf106ba87ca92b477b32a84aa246e4b4481b0980b (patch)
treeed2908479255e86056b364f9dc3b5ddc1eba7ca7 /OpenSim/Region/Framework/Interfaces
parentThis is Npgsql2.0.12.0-bin-ms-net3.5sp1 (diff)
downloadopensim-SC_OLD-f106ba87ca92b477b32a84aa246e4b4481b0980b.zip
opensim-SC_OLD-f106ba87ca92b477b32a84aa246e4b4481b0980b.tar.gz
opensim-SC_OLD-f106ba87ca92b477b32a84aa246e4b4481b0980b.tar.bz2
opensim-SC_OLD-f106ba87ca92b477b32a84aa246e4b4481b0980b.tar.xz
Made terrain uploads thread-safe
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IEstateModule.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IEstateModule.cs b/OpenSim/Region/Framework/Interfaces/IEstateModule.cs
index d49b24e..944c66b 100644
--- a/OpenSim/Region/Framework/Interfaces/IEstateModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IEstateModule.cs
@@ -54,5 +54,10 @@ namespace OpenSim.Region.Framework.Interfaces
54 54
55 void setEstateTerrainBaseTexture(int level, UUID texture); 55 void setEstateTerrainBaseTexture(int level, UUID texture);
56 void setEstateTerrainTextureHeights(int corner, float lowValue, float highValue); 56 void setEstateTerrainTextureHeights(int corner, float lowValue, float highValue);
57
58 /// <summary>
59 /// Returns whether the transfer ID is being used for a terrain transfer.
60 /// </summary>
61 bool IsTerrainXfer(ulong xferID);
57 } 62 }
58} 63}