iStackTrace(targetThread, true) is no longer safe on windoes also

httptests
UbitUmarov 2018-01-18 02:40:59 +00:00
parent 20f3c46b78
commit a6e0ba262a
1 changed files with 7 additions and 0 deletions

View File

@ -2858,6 +2858,12 @@ namespace OpenSim.Framework
/// <returns>The stack trace, or null if failed to get it</returns> /// <returns>The stack trace, or null if failed to get it</returns>
private static StackTrace GetStackTrace(Thread targetThread) private static StackTrace GetStackTrace(Thread targetThread)
{ {
return null;
/*
not only this does not work on mono but it is not longer recomended on windows.
can cause deadlocks etc.
if (IsPlatformMono) if (IsPlatformMono)
{ {
// This doesn't work in Mono // This doesn't work in Mono
@ -2920,6 +2926,7 @@ namespace OpenSim.Framework
// Signal the fallack-thread to stop // Signal the fallack-thread to stop
exitedSafely.Set(); exitedSafely.Set();
} }
*/
} }
#pragma warning restore 0618 #pragma warning restore 0618