aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-06-17 23:34:09 +0100
committerJustin Clark-Casey (justincc)2013-06-17 23:34:09 +0100
commitc0a00cd7fd887190db61b1c69fb0e8f104a7e438 (patch)
treefd430914e34fc915091c844d9765463a13e39289 /OpenSim
parentminor: remove mono compiler warnings in WebFetchInvDescModule (diff)
downloadopensim-SC_OLD-c0a00cd7fd887190db61b1c69fb0e8f104a7e438.zip
opensim-SC_OLD-c0a00cd7fd887190db61b1c69fb0e8f104a7e438.tar.gz
opensim-SC_OLD-c0a00cd7fd887190db61b1c69fb0e8f104a7e438.tar.bz2
opensim-SC_OLD-c0a00cd7fd887190db61b1c69fb0e8f104a7e438.tar.xz
Fix bug where no threadpool data would be displayed in the "show threads" command if threadpool type was QueueUserWorkItem (Unsafe worked as expected)
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/Util.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs
index 7f0850f..5e5eb7e 100644
--- a/OpenSim/Framework/Util.cs
+++ b/OpenSim/Framework/Util.cs
@@ -1880,7 +1880,7 @@ namespace OpenSim.Framework
1880 } 1880 }
1881 } 1881 }
1882 else if ( 1882 else if (
1883 FireAndForgetMethod == FireAndForgetMethod.UnsafeQueueUserWorkItem 1883 FireAndForgetMethod == FireAndForgetMethod.QueueUserWorkItem
1884 || FireAndForgetMethod == FireAndForgetMethod.UnsafeQueueUserWorkItem) 1884 || FireAndForgetMethod == FireAndForgetMethod.UnsafeQueueUserWorkItem)
1885 { 1885 {
1886 threadPoolUsed = "BuiltInThreadPool"; 1886 threadPoolUsed = "BuiltInThreadPool";